Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 69 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 18909749 | 713 days ago | IN | 0 ETH | 0.00046828 | ||||
| Approve | 18909742 | 713 days ago | IN | 0 ETH | 0.00044284 | ||||
| Approve | 17905135 | 854 days ago | IN | 0 ETH | 0.00055431 | ||||
| Approve | 17395016 | 926 days ago | IN | 0 ETH | 0.00166679 | ||||
| Approve | 17394953 | 926 days ago | IN | 0 ETH | 0.00101915 | ||||
| Approve | 17394885 | 926 days ago | IN | 0 ETH | 0.00062395 | ||||
| Approve | 17394885 | 926 days ago | IN | 0 ETH | 0.00109576 | ||||
| Approve | 17394876 | 926 days ago | IN | 0 ETH | 0.00116513 | ||||
| Approve | 17394859 | 926 days ago | IN | 0 ETH | 0.00131562 | ||||
| Approve | 17394855 | 926 days ago | IN | 0 ETH | 0.00123804 | ||||
| Approve | 17394851 | 926 days ago | IN | 0 ETH | 0.0012942 | ||||
| Approve | 17394851 | 926 days ago | IN | 0 ETH | 0.00143098 | ||||
| Approve | 17394843 | 926 days ago | IN | 0 ETH | 0.00154741 | ||||
| Approve | 17394842 | 926 days ago | IN | 0 ETH | 0.00141228 | ||||
| Approve | 17394842 | 926 days ago | IN | 0 ETH | 0.00141228 | ||||
| Approve | 17394842 | 926 days ago | IN | 0 ETH | 0.00204991 | ||||
| Approve | 17394841 | 926 days ago | IN | 0 ETH | 0.00139511 | ||||
| Approve | 17394839 | 926 days ago | IN | 0 ETH | 0.00149105 | ||||
| Approve | 17394838 | 926 days ago | IN | 0 ETH | 0.00143039 | ||||
| Approve | 17394838 | 926 days ago | IN | 0 ETH | 0.00177224 | ||||
| Approve | 17394837 | 926 days ago | IN | 0 ETH | 0.00145393 | ||||
| Renounce Ownersh... | 17394836 | 926 days ago | IN | 0 ETH | 0.00068027 | ||||
| Set Sell Commisi... | 17394834 | 926 days ago | IN | 0 ETH | 0.00087427 | ||||
| Approve | 17394832 | 926 days ago | IN | 0 ETH | 0.00181697 | ||||
| Approve | 17394830 | 926 days ago | IN | 0 ETH | 0.0017412 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 18909750 | 713 days ago | 0.00000002 ETH | ||||
| Transfer | 18909750 | 713 days ago | 0.00000002 ETH | ||||
| Transfer | 18909744 | 713 days ago | 0.00006378 ETH | ||||
| Transfer | 18909744 | 713 days ago | 0.00006378 ETH | ||||
| Transfer | 17527995 | 907 days ago | 0.00049405 ETH | ||||
| Transfer | 17527995 | 907 days ago | 0.00049405 ETH | ||||
| Transfer | 17399422 | 925 days ago | 0.00000149 ETH | ||||
| Transfer | 17399422 | 925 days ago | 0.00000149 ETH | ||||
| Transfer | 17398581 | 925 days ago | 0.00219945 ETH | ||||
| Transfer | 17398581 | 925 days ago | 0.00219945 ETH | ||||
| Transfer | 17398490 | 925 days ago | 0.000031 ETH | ||||
| Transfer | 17398490 | 925 days ago | 0.000031 ETH | ||||
| Transfer | 17395514 | 926 days ago | 0.00255412 ETH | ||||
| Transfer | 17395514 | 926 days ago | 0.00255412 ETH | ||||
| Transfer | 17395500 | 926 days ago | 0.00358908 ETH | ||||
| Transfer | 17395500 | 926 days ago | 0.00358908 ETH | ||||
| Transfer | 17395122 | 926 days ago | 0.00161286 ETH | ||||
| Transfer | 17395122 | 926 days ago | 0.00161286 ETH | ||||
| Transfer | 17394980 | 926 days ago | 0.00112812 ETH | ||||
| Transfer | 17394980 | 926 days ago | 0.00112812 ETH | ||||
| Transfer | 17394975 | 926 days ago | 0.00117428 ETH | ||||
| Transfer | 17394975 | 926 days ago | 0.00117428 ETH | ||||
| Transfer | 17394956 | 926 days ago | 0.00048558 ETH | ||||
| Transfer | 17394956 | 926 days ago | 0.00048558 ETH | ||||
| Transfer | 17394933 | 926 days ago | 0.00387214 ETH |
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Kage
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Website: https://www.kagemix.io/
// Telegram: https://t.me/KAGEMIX
// Twitter: https://twitter.com/kagemix_io
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./interfaces/IUniswapV2Factory.sol";
import "./interfaces/IUniswapV2Router02.sol";
contract Kage is Context, IERC20, IERC20Metadata, Ownable {
using SafeMath for uint256;
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
string private constant _name = "Kagemix";
string private constant _symbol = "KAGE";
IUniswapV2Router02 private _uniswapV2Router;
address private uniswapV2Pair;
address payable private immutable _taxWallet;
mapping(address => bool) private _isExcludedFromFee;
uint8 private constant _decimals = 9;
uint32 public buyTax = 50000;
uint32 public sellTax = 200000;
uint256 private _totalSupply = 10 ** 9 * 10 ** _decimals;
uint256 public maxTrxnAmount = _totalSupply.mul(2).div(100);
uint256 public maxWalletSize = _totalSupply.mul(2).div(100);
bool private inSwap;
modifier lockTheSwap() {
inSwap = true;
_;
inSwap = false;
}
constructor(address uniswapRouter) {
require(uniswapRouter != address(0), "UniswapRouter is the zero address");
_uniswapV2Router = IUniswapV2Router02(uniswapRouter);
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(
address(this),
_uniswapV2Router.WETH()
);
_balances[owner()] = _totalSupply;
_isExcludedFromFee[owner()] = true;
_isExcludedFromFee[address(this)] = true;
_taxWallet = payable(_msgSender());
}
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 view returns (uint256) {
return _totalSupply;
}
function balanceOf(address account) public view returns (uint256) {
return _balances[account];
}
function transfer(address to, uint256 amount) public returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
function allowance(address owner, address spender) public view returns (uint256) {
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount) public returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
function transferFrom(address from, address to, uint256 amount) public returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
function setBuyCommisioPercent(uint32 buyTaxPercent) external onlyOwner {
require(buyTaxPercent <= 50000, "Buy tax restricted by 5%");
buyTax = buyTaxPercent;
}
function setSellCommisioPercent(uint32 sellTaxPercent) external onlyOwner {
require(sellTaxPercent <= 50000, "Sell tax restricted by 5%");
sellTax = sellTaxPercent;
}
function ChangeWallletRestrictions(uint8 percent) external onlyOwner {
uint256 localtotalSupply = _totalSupply;
maxTrxnAmount = localtotalSupply.mul(percent).div(100);
maxWalletSize = localtotalSupply.mul(percent).div(100);
}
function redeemAllRestriction() external onlyOwner {
buyTax = 0;
sellTax = 0;
_transferOwnership(address(0));
}
function _transfer(address from, address to, uint256 amount) private {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
address uniswapV2PairLocal = uniswapV2Pair;
IUniswapV2Router02 uniswapV2Router = _uniswapV2Router;
uint256 lMaxTrxnAmunt = maxTrxnAmount;
uint256 lMaxWalletSize = maxWalletSize;
uint32 lbuyTax = buyTax;
uint32 lsellTax = sellTax;
uint256 taxWalletBalance = _balances[address(this)];
bool isSelling;
uint256 taxAmount;
// Buy condition
if (lbuyTax > 0 && from == uniswapV2PairLocal && !_isExcludedFromFee[to]) {
require(amount <= lMaxTrxnAmunt, "Exceeds the maxTrxnAmount.");
require(balanceOf(to) + amount <= lMaxWalletSize, "Exceeds the maxWalletSize.");
taxAmount = amount.mul(lbuyTax).div(uint256(1e6));
}
// Sell Condition
else if (!inSwap && lsellTax > 0 && to == uniswapV2PairLocal && !_isExcludedFromFee[from]) {
taxAmount = amount.mul(lsellTax).div(uint256(1e6));
isSelling = true;
}
if (taxAmount > 0) {
amount = amount.sub(taxAmount);
taxWalletBalance = taxWalletBalance.add(taxAmount);
_balances[address(this)] = taxWalletBalance;
}
if (isSelling && taxWalletBalance > 0) {
swapTokensForEth(taxWalletBalance, address(uniswapV2Router));
uint256 currentETHBalance = address(this).balance;
if (currentETHBalance > 0) {
sendCommisionsToTeam(currentETHBalance);
}
}
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance.sub(amount);
_balances[to] += amount;
}
emit Transfer(from, to, amount);
}
function _burn(address account, uint256 amount) private {
require(account != address(0), "ERC20: burn from the zero address");
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance.sub(amount);
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
}
function _approve(address owner, address spender, uint256 amount) private {
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 _spendAllowance(address owner, address spender, uint256 amount) private {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
function swapTokensForEth(uint256 tokenAmount, address uniswapV2RouterAddress) private lockTheSwap {
IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02(uniswapV2RouterAddress);
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
_approve(address(this), address(uniswapV2Router), tokenAmount);
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0,
path,
address(this),
block.timestamp
);
}
function sendCommisionsToTeam(uint256 amount) private {
_taxWallet.transfer(amount);
}
receive() external payable {}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
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.17;
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
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(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(address tokenA, address tokenB) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
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);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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);
/**
* @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 `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"uniswapRouter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"percent","type":"uint8"}],"name":"ChangeWallletRestrictions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTrxnAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redeemAllRestriction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"buyTaxPercent","type":"uint32"}],"name":"setBuyCommisioPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"sellTaxPercent","type":"uint32"}],"name":"setSellCommisioPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60a0604052600680546001600160401b03191666030d400000c3501790556200002b6009600a620004ec565b6200003b90633b9aca00620004fd565b6007556200007560646200006160026007546200036460201b620007581790919060201c565b6200037b60201b6200076b1790919060201c565b6008556200009b60646200006160026007546200036460201b620007581790919060201c565b600955348015620000ab57600080fd5b506040516200180c3803806200180c833981016040819052620000ce9162000517565b620000d93362000389565b6001600160a01b0381166200013e5760405162461bcd60e51b815260206004820152602160248201527f556e6973776170526f7574657220697320746865207a65726f206164647265736044820152607360f81b606482015260840160405180910390fd5b600380546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000198573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001be919062000517565b6001600160a01b031663c9c6539630600360009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000221573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000247919062000517565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000295573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bb919062000517565b600480546001600160a01b0319166001600160a01b0392831617905560075460008054909216825260016020819052604083209190915590600590620003096000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526005909252902080549091166001179055620003513390565b6001600160a01b0316608052506200056c565b6000620003728284620004fd565b90505b92915050565b600062000372828462000549565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000430578160001904821115620004145762000414620003d9565b808516156200042257918102915b93841c9390800290620003f4565b509250929050565b600082620004495750600162000375565b81620004585750600062000375565b81600181146200047157600281146200047c576200049c565b600191505062000375565b60ff841115620004905762000490620003d9565b50506001821b62000375565b5060208310610133831016604e8410600b8410161715620004c1575081810a62000375565b620004cd8383620003ef565b8060001904821115620004e457620004e4620003d9565b029392505050565b60006200037260ff84168362000438565b8082028115828204841417620003755762000375620003d9565b6000602082840312156200052a57600080fd5b81516001600160a01b03811681146200054257600080fd5b9392505050565b6000826200056757634e487b7160e01b600052601260045260246000fd5b500490565b608051611284620005886000396000610f7901526112846000f3fe6080604052600436106101395760003560e01c8063715018a6116100ab578063a457c2d71161006f578063a457c2d714610392578063a9059cbb146103b2578063cbe80219146103d2578063cc1776d3146103e7578063dd62ed3e1461040c578063f2fde38b1461042c57600080fd5b8063715018a6146102f25780638da5cb5b146103075780638f3fa8601461032f57806395d89b41146103455780639fb672dd1461037257600080fd5b806339509351116100fd57806339509351146102125780634f7041a514610232578063587a7e5714610264578063613f98b71461027a5780636b45159a1461029c57806370a08231146102bc57600080fd5b806306fdde0314610145578063095ea7b31461018757806318160ddd146101b757806323b872dd146101d6578063313ce567146101f657600080fd5b3661014057005b600080fd5b34801561015157600080fd5b50604080518082019091526007815266096c2cecadad2f60cb1b60208201525b60405161017e9190610fc6565b60405180910390f35b34801561019357600080fd5b506101a76101a2366004611029565b61044c565b604051901515815260200161017e565b3480156101c357600080fd5b506007545b60405190815260200161017e565b3480156101e257600080fd5b506101a76101f1366004611055565b610466565b34801561020257600080fd5b506040516009815260200161017e565b34801561021e57600080fd5b506101a761022d366004611029565b61048a565b34801561023e57600080fd5b5060065461024f9063ffffffff1681565b60405163ffffffff909116815260200161017e565b34801561027057600080fd5b506101c860085481565b34801561028657600080fd5b5061029a610295366004611096565b6104ac565b005b3480156102a857600080fd5b5061029a6102b7366004611096565b61052d565b3480156102c857600080fd5b506101c86102d73660046110bc565b6001600160a01b031660009081526001602052604090205490565b3480156102fe57600080fd5b5061029a6105b5565b34801561031357600080fd5b506000546040516001600160a01b03909116815260200161017e565b34801561033b57600080fd5b506101c860095481565b34801561035157600080fd5b506040805180820190915260048152634b41474560e01b6020820152610171565b34801561037e57600080fd5b5061029a61038d3660046110d9565b6105c9565b34801561039e57600080fd5b506101a76103ad366004611029565b610608565b3480156103be57600080fd5b506101a76103cd366004611029565b610683565b3480156103de57600080fd5b5061029a610691565b3480156103f357600080fd5b5060065461024f90640100000000900463ffffffff1681565b34801561041857600080fd5b506101c86104273660046110fc565b6106b4565b34801561043857600080fd5b5061029a6104473660046110bc565b6106df565b60003361045a818585610777565b60019150505b92915050565b60003361047485828561089b565b61047f858585610915565b506001949350505050565b60003361045a81858561049d83836106b4565b6104a7919061114b565b610777565b6104b4610d2d565b61c3508163ffffffff1611156105115760405162461bcd60e51b815260206004820152601860248201527f427579207461782072657374726963746564206279203525000000000000000060448201526064015b60405180910390fd5b6006805463ffffffff191663ffffffff92909216919091179055565b610535610d2d565b61c3508163ffffffff16111561058d5760405162461bcd60e51b815260206004820152601960248201527f53656c6c207461782072657374726963746564206279203525000000000000006044820152606401610508565b6006805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b6105bd610d2d565b6105c76000610d87565b565b6105d1610d2d565b6007546105ec60646105e68360ff8616610758565b9061076b565b60085561060160646105e68360ff8616610758565b6009555050565b6000338161061682866106b4565b9050838110156106765760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610508565b61047f8286868403610777565b60003361045a818585610915565b610699610d2d565b6006805467ffffffffffffffff191690556105c76000610d87565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106e7610d2d565b6001600160a01b03811661074c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610508565b61075581610d87565b50565b6000610764828461115e565b9392505050565b60006107648284611175565b6001600160a01b0383166107d95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610508565b6001600160a01b03821661083a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610508565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108a784846106b4565b9050600019811461090f57818110156109025760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610508565b61090f8484848403610777565b50505050565b6001600160a01b0383166109795760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610508565b6001600160a01b0382166109db5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610508565b600454600354600854600954600654306000908152600160205260408120546001600160a01b03968716969095169463ffffffff8084169364010000000090041691808415801590610a3e5750886001600160a01b03168c6001600160a01b0316145b8015610a6357506001600160a01b038b1660009081526005602052604090205460ff16155b15610b5257868a1115610ab85760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d61785472786e416d6f756e742e0000000000006044820152606401610508565b858a610ad98d6001600160a01b031660009081526001602052604090205490565b610ae3919061114b565b1115610b315760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610508565b610b4b620f42406105e68c63ffffffff808a169061075816565b9050610bd3565b600a5460ff16158015610b6b575060008463ffffffff16115b8015610b885750886001600160a01b03168b6001600160a01b0316145b8015610bad57506001600160a01b038c1660009081526005602052604090205460ff16155b15610bd357610bcc620f42406105e68c63ffffffff8089169061075816565b9050600191505b8015610c0457610be38a82610dd7565b9950610bef8382610de3565b30600090815260016020526040902081905592505b818015610c115750600083115b15610c3257610c208389610def565b478015610c3057610c3081610f6c565b505b6001600160a01b038c166000908152600160205260409020548a811015610caa5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610508565b610cb4818c610dd7565b6001600160a01b03808f1660008181526001602052604080822094909455918f168083529183902080548f01905591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d16908f815260200190565b60405180910390a350505050505050505050505050565b6000546001600160a01b031633146105c75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610508565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006107648284611197565b6000610764828461114b565b600a805460ff19166001179055604080516002808252606082018352839260009291906020830190803683370190505090503081600081518110610e3557610e356111aa565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb791906111c0565b81600181518110610eca57610eca6111aa565b60200260200101906001600160a01b031690816001600160a01b031681525050610ef5308386610777565b60405163791ac94760e01b81526001600160a01b0383169063791ac94790610f2a9087906000908690309042906004016111dd565b600060405180830381600087803b158015610f4457600080fd5b505af1158015610f58573d6000803e3d6000fd5b5050600a805460ff19169055505050505050565b6040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169082156108fc029083906000818181858888f19350505050158015610fc2573d6000803e3d6000fd5b5050565b600060208083528351808285015260005b81811015610ff357858101830151858201604001528201610fd7565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461075557600080fd5b6000806040838503121561103c57600080fd5b823561104781611014565b946020939093013593505050565b60008060006060848603121561106a57600080fd5b833561107581611014565b9250602084013561108581611014565b929592945050506040919091013590565b6000602082840312156110a857600080fd5b813563ffffffff8116811461076457600080fd5b6000602082840312156110ce57600080fd5b813561076481611014565b6000602082840312156110eb57600080fd5b813560ff8116811461076457600080fd5b6000806040838503121561110f57600080fd5b823561111a81611014565b9150602083013561112a81611014565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561046057610460611135565b808202811582820484141761046057610460611135565b60008261119257634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561046057610460611135565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156111d257600080fd5b815161076481611014565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561122d5784516001600160a01b031683529383019391830191600101611208565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122043b3a1c29c3d7d67b9811d5252ba28705ffdcea279a46893ddb557776674985a64736f6c634300081100330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x6080604052600436106101395760003560e01c8063715018a6116100ab578063a457c2d71161006f578063a457c2d714610392578063a9059cbb146103b2578063cbe80219146103d2578063cc1776d3146103e7578063dd62ed3e1461040c578063f2fde38b1461042c57600080fd5b8063715018a6146102f25780638da5cb5b146103075780638f3fa8601461032f57806395d89b41146103455780639fb672dd1461037257600080fd5b806339509351116100fd57806339509351146102125780634f7041a514610232578063587a7e5714610264578063613f98b71461027a5780636b45159a1461029c57806370a08231146102bc57600080fd5b806306fdde0314610145578063095ea7b31461018757806318160ddd146101b757806323b872dd146101d6578063313ce567146101f657600080fd5b3661014057005b600080fd5b34801561015157600080fd5b50604080518082019091526007815266096c2cecadad2f60cb1b60208201525b60405161017e9190610fc6565b60405180910390f35b34801561019357600080fd5b506101a76101a2366004611029565b61044c565b604051901515815260200161017e565b3480156101c357600080fd5b506007545b60405190815260200161017e565b3480156101e257600080fd5b506101a76101f1366004611055565b610466565b34801561020257600080fd5b506040516009815260200161017e565b34801561021e57600080fd5b506101a761022d366004611029565b61048a565b34801561023e57600080fd5b5060065461024f9063ffffffff1681565b60405163ffffffff909116815260200161017e565b34801561027057600080fd5b506101c860085481565b34801561028657600080fd5b5061029a610295366004611096565b6104ac565b005b3480156102a857600080fd5b5061029a6102b7366004611096565b61052d565b3480156102c857600080fd5b506101c86102d73660046110bc565b6001600160a01b031660009081526001602052604090205490565b3480156102fe57600080fd5b5061029a6105b5565b34801561031357600080fd5b506000546040516001600160a01b03909116815260200161017e565b34801561033b57600080fd5b506101c860095481565b34801561035157600080fd5b506040805180820190915260048152634b41474560e01b6020820152610171565b34801561037e57600080fd5b5061029a61038d3660046110d9565b6105c9565b34801561039e57600080fd5b506101a76103ad366004611029565b610608565b3480156103be57600080fd5b506101a76103cd366004611029565b610683565b3480156103de57600080fd5b5061029a610691565b3480156103f357600080fd5b5060065461024f90640100000000900463ffffffff1681565b34801561041857600080fd5b506101c86104273660046110fc565b6106b4565b34801561043857600080fd5b5061029a6104473660046110bc565b6106df565b60003361045a818585610777565b60019150505b92915050565b60003361047485828561089b565b61047f858585610915565b506001949350505050565b60003361045a81858561049d83836106b4565b6104a7919061114b565b610777565b6104b4610d2d565b61c3508163ffffffff1611156105115760405162461bcd60e51b815260206004820152601860248201527f427579207461782072657374726963746564206279203525000000000000000060448201526064015b60405180910390fd5b6006805463ffffffff191663ffffffff92909216919091179055565b610535610d2d565b61c3508163ffffffff16111561058d5760405162461bcd60e51b815260206004820152601960248201527f53656c6c207461782072657374726963746564206279203525000000000000006044820152606401610508565b6006805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b6105bd610d2d565b6105c76000610d87565b565b6105d1610d2d565b6007546105ec60646105e68360ff8616610758565b9061076b565b60085561060160646105e68360ff8616610758565b6009555050565b6000338161061682866106b4565b9050838110156106765760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610508565b61047f8286868403610777565b60003361045a818585610915565b610699610d2d565b6006805467ffffffffffffffff191690556105c76000610d87565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106e7610d2d565b6001600160a01b03811661074c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610508565b61075581610d87565b50565b6000610764828461115e565b9392505050565b60006107648284611175565b6001600160a01b0383166107d95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610508565b6001600160a01b03821661083a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610508565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108a784846106b4565b9050600019811461090f57818110156109025760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610508565b61090f8484848403610777565b50505050565b6001600160a01b0383166109795760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610508565b6001600160a01b0382166109db5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610508565b600454600354600854600954600654306000908152600160205260408120546001600160a01b03968716969095169463ffffffff8084169364010000000090041691808415801590610a3e5750886001600160a01b03168c6001600160a01b0316145b8015610a6357506001600160a01b038b1660009081526005602052604090205460ff16155b15610b5257868a1115610ab85760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d61785472786e416d6f756e742e0000000000006044820152606401610508565b858a610ad98d6001600160a01b031660009081526001602052604090205490565b610ae3919061114b565b1115610b315760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610508565b610b4b620f42406105e68c63ffffffff808a169061075816565b9050610bd3565b600a5460ff16158015610b6b575060008463ffffffff16115b8015610b885750886001600160a01b03168b6001600160a01b0316145b8015610bad57506001600160a01b038c1660009081526005602052604090205460ff16155b15610bd357610bcc620f42406105e68c63ffffffff8089169061075816565b9050600191505b8015610c0457610be38a82610dd7565b9950610bef8382610de3565b30600090815260016020526040902081905592505b818015610c115750600083115b15610c3257610c208389610def565b478015610c3057610c3081610f6c565b505b6001600160a01b038c166000908152600160205260409020548a811015610caa5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610508565b610cb4818c610dd7565b6001600160a01b03808f1660008181526001602052604080822094909455918f168083529183902080548f01905591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d16908f815260200190565b60405180910390a350505050505050505050505050565b6000546001600160a01b031633146105c75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610508565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006107648284611197565b6000610764828461114b565b600a805460ff19166001179055604080516002808252606082018352839260009291906020830190803683370190505090503081600081518110610e3557610e356111aa565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb791906111c0565b81600181518110610eca57610eca6111aa565b60200260200101906001600160a01b031690816001600160a01b031681525050610ef5308386610777565b60405163791ac94760e01b81526001600160a01b0383169063791ac94790610f2a9087906000908690309042906004016111dd565b600060405180830381600087803b158015610f4457600080fd5b505af1158015610f58573d6000803e3d6000fd5b5050600a805460ff19169055505050505050565b6040516001600160a01b037f000000000000000000000000c19fe8df70371dd14c9e712a191d93daa69f1bee169082156108fc029083906000818181858888f19350505050158015610fc2573d6000803e3d6000fd5b5050565b600060208083528351808285015260005b81811015610ff357858101830151858201604001528201610fd7565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461075557600080fd5b6000806040838503121561103c57600080fd5b823561104781611014565b946020939093013593505050565b60008060006060848603121561106a57600080fd5b833561107581611014565b9250602084013561108581611014565b929592945050506040919091013590565b6000602082840312156110a857600080fd5b813563ffffffff8116811461076457600080fd5b6000602082840312156110ce57600080fd5b813561076481611014565b6000602082840312156110eb57600080fd5b813560ff8116811461076457600080fd5b6000806040838503121561110f57600080fd5b823561111a81611014565b9150602083013561112a81611014565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561046057610460611135565b808202811582820484141761046057610460611135565b60008261119257634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561046057610460611135565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156111d257600080fd5b815161076481611014565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561122d5784516001600160a01b031683529383019391830191600101611208565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122043b3a1c29c3d7d67b9811d5252ba28705ffdcea279a46893ddb557776674985a64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
-----Decoded View---------------
Arg [0] : uniswapRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.