Overview
ETH Balance
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 332 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 38219649 | 5 days ago | IN | 0 ETH | 0.00000003 | ||||
| Approve | 38203518 | 5 days ago | IN | 0 ETH | 0.00000001 | ||||
| Approve | 37300744 | 15 days ago | IN | 0 ETH | 0 | ||||
| Approve | 36738546 | 22 days ago | IN | 0 ETH | 0 | ||||
| Approve | 34032031 | 53 days ago | IN | 0 ETH | 0 | ||||
| Approve | 33780515 | 56 days ago | IN | 0 ETH | 0.00000001 | ||||
| Approve | 33580138 | 58 days ago | IN | 0 ETH | 0 | ||||
| Approve | 32686553 | 69 days ago | IN | 0 ETH | 0.00000003 | ||||
| Approve | 32453479 | 71 days ago | IN | 0 ETH | 0 | ||||
| Approve | 32414603 | 72 days ago | IN | 0 ETH | 0 | ||||
| Approve | 32381544 | 72 days ago | IN | 0 ETH | 0 | ||||
| Approve | 32380628 | 72 days ago | IN | 0 ETH | 0.00000002 | ||||
| Approve | 32303595 | 73 days ago | IN | 0 ETH | 0 | ||||
| Approve | 32248526 | 74 days ago | IN | 0 ETH | 0 | ||||
| Approve | 32241820 | 74 days ago | IN | 0 ETH | 0 | ||||
| Approve | 32240730 | 74 days ago | IN | 0 ETH | 0 | ||||
| Approve | 32236749 | 74 days ago | IN | 0 ETH | 0 | ||||
| Approve | 32207826 | 74 days ago | IN | 0 ETH | 0 | ||||
| Approve | 32176348 | 75 days ago | IN | 0 ETH | 0.00000467 | ||||
| Approve | 32156929 | 75 days ago | IN | 0 ETH | 0.00000004 | ||||
| Approve | 32126900 | 75 days ago | IN | 0 ETH | 0.00000102 | ||||
| Approve | 32123401 | 75 days ago | IN | 0 ETH | 0 | ||||
| Approve | 32115887 | 75 days ago | IN | 0 ETH | 0 | ||||
| Approve | 32106719 | 75 days ago | IN | 0 ETH | 0 | ||||
| Approve | 32102685 | 75 days ago | IN | 0 ETH | 0 |
Latest 1 internal transaction
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 21262724 | 201 days ago | Contract Creation | 0 ETH |
Cross-Chain Transactions
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
/*
This token was deployed safely using https://klik.finance
https://x.com/klik_evm
*/
pragma solidity >=0.8.9;
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
interface IUniswapV3Factory {
function getPool(address tokenA, address tokenB, uint24 fee) external view returns (address);
}
interface INonfungiblePositionManager {
struct MintParams {
address token0;
address token1;
uint24 fee;
int24 tickLower;
int24 tickUpper;
uint256 amount0Desired;
uint256 amount1Desired;
uint256 amount0Min;
uint256 amount1Min;
address recipient;
uint256 deadline;
}
function factory() external view returns (address);
function WETH9() external view returns (address);
function positions(uint256 tokenId) external view returns (
uint96 nonce,
address operator,
address token0,
address token1,
uint24 fee,
int24 tickLower,
int24 tickUpper,
uint128 liquidity,
uint256 feeGrowthInside0LastX128,
uint256 feeGrowthInside1LastX128,
uint128 tokensOwed0,
uint128 tokensOwed1
);
function createAndInitializePoolIfNecessary(
address token0,
address token1,
uint24 fee,
uint160 sqrtPriceX96
) external returns (address pool);
function mint(MintParams calldata params) external returns (
uint256 tokenId,
uint128 liquidity,
uint256 amount0,
uint256 amount1
);
struct CollectParams {
uint256 tokenId;
address recipient;
uint128 amount0Max;
uint128 amount1Max;
}
function collect(CollectParams calldata params) external payable returns (
uint256 amount0,
uint256 amount1
);
function getApproved(uint256 tokenId) external view returns (address);
function isApprovedForAll(address owner, address operator) external view returns (bool);
function ownerOf(uint256 tokenId) external view returns (address);
}
contract Token is ERC20, ERC20Burnable {
address public platform;
address public creator;
uint256 private launchBlock;
uint256 private maxTxAmount;
uint256 private constant LAUNCH_PERIOD = 5; // 5 blocks
uint256 private constant MAX_WALLET_PERCENTAGE = 2; // 2% of total supply
address public constant POSITION_MANAGER = 0x943e6e07a7E8E791dAFC44083e54041D743C46E9;
address public constant WETH = 0x4200000000000000000000000000000000000006;
// Track transfers per tx.origin per block to detect multi-swaps
mapping(address => uint256) private tokensFromPoolPerOrigin;
constructor(
string memory _name,
string memory _symbol,
address _creator,
address _platform
) ERC20(_name, _symbol) {
platform = _platform;
creator = _creator;
launchBlock = block.number;
uint256 totalTokens = 1000000000 * 10 ** decimals();
maxTxAmount = (totalTokens * MAX_WALLET_PERCENTAGE) / 100;
_mint(_platform, totalTokens);
}
function _update(address from, address to, uint256 value) internal override {
if (block.number > launchBlock && block.number <= launchBlock + LAUNCH_PERIOD) {
// Get pool address for exemption
address factory = INonfungiblePositionManager(POSITION_MANAGER).factory();
address pool = IUniswapV3Factory(factory).getPool(address(this), WETH, 10000);
if (from == pool && to != platform && to != creator) {
tokensFromPoolPerOrigin[tx.origin] += value;
require(
tokensFromPoolPerOrigin[tx.origin] <= maxTxAmount*110/100,
"Keeping 2% pool Limits In Kontrol"
);
}
if (to != creator && to != platform && to != pool && from != address(0)) {
require(
balanceOf(to) + value <= maxTxAmount,
"Max wallet limit exceeded during launch period"
);
}
}
// Block all buys at launch block except exempted transfers
if (block.number == launchBlock &&
from != address(0) &&
to != platform &&
from != platform &&
!(from == platform && to == creator)) { // Only platform can send to creator
revert("No buys allowed during launch block!");
}
super._update(from, to, value);
}
function getTokenPair() public view returns (address,address,address){
address find_factory = INonfungiblePositionManager(POSITION_MANAGER).factory();
address find_pool = IUniswapV3Factory(find_factory).getPool(address(this), WETH, 10000);
return (find_pool,address(this),find_factory);
}
function isLaunchPeriodActive() public view returns (bool) {
return block.number < launchBlock + LAUNCH_PERIOD;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (token/ERC20/ERC20.sol)
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";
/**
* @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.
*/
abstract contract ERC20 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;
/**
* @dev Sets the values for {name} and {symbol}.
*
* Both values are immutable: they can only be set once during construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @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 {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));
}
_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 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);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.20;
import {ERC20} from "../ERC20.sol";
import {Context} from "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys a `value` amount of tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 value) public virtual {
_burn(_msgSender(), value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, deducting from
* the caller's allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `value`.
*/
function burnFrom(address account, uint256 value) public virtual {
_spendAllowance(account, _msgSender(), value);
_burn(account, value);
}
}// 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;
}
}// 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.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;
/**
* @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 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 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);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"remappings": []
}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":"address","name":"_creator","type":"address"},{"internalType":"address","name":"_platform","type":"address"}],"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":[],"name":"POSITION_MANAGER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"creator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPair","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLaunchPeriodActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"platform","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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
608060405234801561000f575f5ffd5b5060405161181738038061181783398101604081905261002e916106e8565b8383600361003c83826107f0565b50600461004982826107f0565b5050600580546001600160a01b038085166001600160a01b031992831617909255600680549286169290911691909117905550436007555f610089601290565b61009490600a6109a3565b6100a290633b9aca006109b8565b905060646100b16002836109b8565b6100bb91906109cf565b6008556100c882826100d2565b5050505050610a1a565b6001600160a01b0382166101005760405163ec442f0560e01b81525f60048201526024015b60405180910390fd5b61010b5f838361010f565b5050565b6007544311801561012e5750600560075461012a91906109ee565b4311155b15610421575f73943e6e07a7e8e791dafc44083e54041d743c46e96001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610184573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101a89190610a01565b604051630b4c774160e11b8152306004820152734200000000000000000000000000000000000006602482015261271060448201529091505f906001600160a01b03831690631698ee8290606401602060405180830381865afa158015610211573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102359190610a01565b9050806001600160a01b0316856001600160a01b031614801561026657506005546001600160a01b03858116911614155b801561028057506006546001600160a01b03858116911614155b1561032a57325f90815260096020526040812080548592906102a39084906109ee565b90915550506008546064906102b990606e6109b8565b6102c391906109cf565b325f90815260096020526040902054111561032a5760405162461bcd60e51b815260206004820152602160248201527f4b656570696e6720322520706f6f6c204c696d69747320496e204b6f6e74726f6044820152601b60fa1b60648201526084016100f7565b6006546001600160a01b0385811691161480159061035657506005546001600160a01b03858116911614155b80156103745750806001600160a01b0316846001600160a01b031614155b801561038857506001600160a01b03851615155b1561041e57600854836103af866001600160a01b03165f9081526020819052604090205490565b6103b991906109ee565b111561041e5760405162461bcd60e51b815260206004820152602e60248201527f4d61782077616c6c6574206c696d697420657863656564656420647572696e6760448201526d081b185d5b98da081c195c9a5bd960921b60648201526084016100f7565b50505b6007544314801561043a57506001600160a01b03831615155b801561045457506005546001600160a01b03838116911614155b801561046e57506005546001600160a01b03848116911614155b80156104a157506005546001600160a01b03848116911614801561049f57506006546001600160a01b038381169116145b155b156104fa5760405162461bcd60e51b8152602060048201526024808201527f4e6f206275797320616c6c6f77656420647572696e67206c61756e636820626c6044820152636f636b2160e01b60648201526084016100f7565b61050583838361050a565b505050565b6001600160a01b038316610534578060025f82825461052991906109ee565b909155506105a49050565b6001600160a01b0383165f90815260208190526040902054818110156105865760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100f7565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166105c0576002805482900390556105de565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161062391815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610653575f5ffd5b81516001600160401b0381111561066c5761066c610630565b604051601f8201601f19908116603f011681016001600160401b038111828210171561069a5761069a610630565b6040528181528382016020018510156106b1575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b80516001600160a01b03811681146106e3575f5ffd5b919050565b5f5f5f5f608085870312156106fb575f5ffd5b84516001600160401b03811115610710575f5ffd5b61071c87828801610644565b602087015190955090506001600160401b03811115610739575f5ffd5b61074587828801610644565b935050610754604086016106cd565b9150610762606086016106cd565b905092959194509250565b600181811c9082168061078157607f821691505b60208210810361079f57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561050557805f5260205f20601f840160051c810160208510156107ca5750805b601f840160051c820191505b818110156107e9575f81556001016107d6565b5050505050565b81516001600160401b0381111561080957610809610630565b61081d81610817845461076d565b846107a5565b6020601f82116001811461084f575f83156108385750848201515b5f19600385901b1c1916600184901b1784556107e9565b5f84815260208120601f198516915b8281101561087e578785015182556020948501946001909201910161085e565b508482101561089b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b6001815b60018411156108f9578085048111156108dd576108dd6108aa565b60018416156108eb57908102905b60019390931c9280026108c2565b935093915050565b5f8261090f5750600161099d565b8161091b57505f61099d565b8160018114610931576002811461093b57610957565b600191505061099d565b60ff84111561094c5761094c6108aa565b50506001821b61099d565b5060208310610133831016604e8410600b841016171561097a575081810a61099d565b6109865f1984846108be565b805f1904821115610999576109996108aa565b0290505b92915050565b5f6109b160ff841683610901565b9392505050565b808202811582820484141761099d5761099d6108aa565b5f826109e957634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561099d5761099d6108aa565b5f60208284031215610a11575f5ffd5b6109b1826106cd565b610df080610a275f395ff3fe608060405234801561000f575f5ffd5b5060043610610106575f3560e01c806342966c681161009e57806395d89b411161006e57806395d89b411461022c578063a9059cbb14610234578063ad5c464814610247578063cbbc94cf14610255578063dd62ed3e14610287575f5ffd5b806342966c68146101c95780634bde38c8146101de57806370a08231146101f157806379cc679014610219575f5ffd5b80631bea83fe116100d95780631bea83fe1461018457806323b872dd1461019f5780632f4237c0146101b2578063313ce567146101ba575f5ffd5b806302d05d3f1461010a57806306fdde031461013a578063095ea7b31461014f57806318160ddd14610172575b5f5ffd5b60065461011d906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6101426102bf565b6040516101319190610be9565b61016261015d366004610c32565b61034f565b6040519015158152602001610131565b6002545b604051908152602001610131565b61011d73943e6e07a7e8e791dafc44083e54041d743c46e981565b6101626101ad366004610c5c565b610368565b61016261038b565b60405160128152602001610131565b6101dc6101d7366004610c9a565b6103a2565b005b60055461011d906001600160a01b031681565b6101766101ff366004610cb1565b6001600160a01b03165f9081526020819052604090205490565b6101dc610227366004610c32565b6103af565b6101426103c8565b610162610242366004610c32565b6103d7565b61011d6006602160991b0181565b61025d6103e4565b604080516001600160a01b0394851681529284166020840152921691810191909152606001610131565b610176610295366004610cd3565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546102ce90610d0a565b80601f01602080910402602001604051908101604052809291908181526020018280546102fa90610d0a565b80156103455780601f1061031c57610100808354040283529160200191610345565b820191905f5260205f20905b81548152906001019060200180831161032857829003601f168201915b5050505050905090565b5f3361035c8185856104e9565b60019150505b92915050565b5f336103758582856104fb565b61038085858561057c565b506001949350505050565b5f600560075461039b9190610d56565b4310905090565b6103ac33826105d9565b50565b6103ba8233836104fb565b6103c482826105d9565b5050565b6060600480546102ce90610d0a565b5f3361035c81858561057c565b5f5f5f5f73943e6e07a7e8e791dafc44083e54041d743c46e96001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610438573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061045c9190610d69565b604051630b4c774160e11b81523060048201526006602160991b01602482015261271060448201529091505f906001600160a01b03831690631698ee8290606401602060405180830381865afa1580156104b8573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104dc9190610d69565b9530955091935090915050565b6104f6838383600161060d565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610576578181101561056857604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61057684848484035f61060d565b50505050565b6001600160a01b0383166105a557604051634b637e8f60e11b81525f600482015260240161055f565b6001600160a01b0382166105ce5760405163ec442f0560e01b81525f600482015260240161055f565b6104f68383836106df565b6001600160a01b03821661060257604051634b637e8f60e11b81525f600482015260240161055f565b6103c4825f836106df565b6001600160a01b0384166106365760405163e602df0560e01b81525f600482015260240161055f565b6001600160a01b03831661065f57604051634a1406b160e11b81525f600482015260240161055f565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561057657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516106d191815260200190565b60405180910390a350505050565b600754431180156106fe575060056007546106fa9190610d56565b4311155b156109e4575f73943e6e07a7e8e791dafc44083e54041d743c46e96001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610754573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107789190610d69565b604051630b4c774160e11b81523060048201526006602160991b01602482015261271060448201529091505f906001600160a01b03831690631698ee8290606401602060405180830381865afa1580156107d4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107f89190610d69565b9050806001600160a01b0316856001600160a01b031614801561082957506005546001600160a01b03858116911614155b801561084357506006546001600160a01b03858116911614155b156108ed57325f9081526009602052604081208054859290610866908490610d56565b909155505060085460649061087c90606e610d84565b6108869190610d9b565b325f9081526009602052604090205411156108ed5760405162461bcd60e51b815260206004820152602160248201527f4b656570696e6720322520706f6f6c204c696d69747320496e204b6f6e74726f6044820152601b60fa1b606482015260840161055f565b6006546001600160a01b0385811691161480159061091957506005546001600160a01b03858116911614155b80156109375750806001600160a01b0316846001600160a01b031614155b801561094b57506001600160a01b03851615155b156109e15760085483610972866001600160a01b03165f9081526020819052604090205490565b61097c9190610d56565b11156109e15760405162461bcd60e51b815260206004820152602e60248201527f4d61782077616c6c6574206c696d697420657863656564656420647572696e6760448201526d081b185d5b98da081c195c9a5bd960921b606482015260840161055f565b50505b600754431480156109fd57506001600160a01b03831615155b8015610a1757506005546001600160a01b03838116911614155b8015610a3157506005546001600160a01b03848116911614155b8015610a6457506005546001600160a01b038481169116148015610a6257506006546001600160a01b038381169116145b155b15610abd5760405162461bcd60e51b8152602060048201526024808201527f4e6f206275797320616c6c6f77656420647572696e67206c61756e636820626c6044820152636f636b2160e01b606482015260840161055f565b6104f68383836001600160a01b038316610aed578060025f828254610ae29190610d56565b90915550610b5d9050565b6001600160a01b0383165f9081526020819052604090205481811015610b3f5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161055f565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610b7957600280548290039055610b97565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bdc91815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146103ac575f5ffd5b5f5f60408385031215610c43575f5ffd5b8235610c4e81610c1e565b946020939093013593505050565b5f5f5f60608486031215610c6e575f5ffd5b8335610c7981610c1e565b92506020840135610c8981610c1e565b929592945050506040919091013590565b5f60208284031215610caa575f5ffd5b5035919050565b5f60208284031215610cc1575f5ffd5b8135610ccc81610c1e565b9392505050565b5f5f60408385031215610ce4575f5ffd5b8235610cef81610c1e565b91506020830135610cff81610c1e565b809150509250929050565b600181811c90821680610d1e57607f821691505b602082108103610d3c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561036257610362610d42565b5f60208284031215610d79575f5ffd5b8151610ccc81610c1e565b808202811582820484141761036257610362610d42565b5f82610db557634e487b7160e01b5f52601260045260245ffd5b50049056fea264697066735822122097e58110e0b2929c23b9eb0a2fb3a81677416da465f77ea9fa8c7c35d8cc44fe64736f6c634300081e0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000f28a6af097a92c9d1b22d8782413e4278a48d4dd00000000000000000000000005e40bcba6e5e2f23c4bd87544c42ba3363c1aeb0000000000000000000000000000000000000000000000000000000000000006556e6970656700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006554e495045470000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f5ffd5b5060043610610106575f3560e01c806342966c681161009e57806395d89b411161006e57806395d89b411461022c578063a9059cbb14610234578063ad5c464814610247578063cbbc94cf14610255578063dd62ed3e14610287575f5ffd5b806342966c68146101c95780634bde38c8146101de57806370a08231146101f157806379cc679014610219575f5ffd5b80631bea83fe116100d95780631bea83fe1461018457806323b872dd1461019f5780632f4237c0146101b2578063313ce567146101ba575f5ffd5b806302d05d3f1461010a57806306fdde031461013a578063095ea7b31461014f57806318160ddd14610172575b5f5ffd5b60065461011d906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6101426102bf565b6040516101319190610be9565b61016261015d366004610c32565b61034f565b6040519015158152602001610131565b6002545b604051908152602001610131565b61011d73943e6e07a7e8e791dafc44083e54041d743c46e981565b6101626101ad366004610c5c565b610368565b61016261038b565b60405160128152602001610131565b6101dc6101d7366004610c9a565b6103a2565b005b60055461011d906001600160a01b031681565b6101766101ff366004610cb1565b6001600160a01b03165f9081526020819052604090205490565b6101dc610227366004610c32565b6103af565b6101426103c8565b610162610242366004610c32565b6103d7565b61011d6006602160991b0181565b61025d6103e4565b604080516001600160a01b0394851681529284166020840152921691810191909152606001610131565b610176610295366004610cd3565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546102ce90610d0a565b80601f01602080910402602001604051908101604052809291908181526020018280546102fa90610d0a565b80156103455780601f1061031c57610100808354040283529160200191610345565b820191905f5260205f20905b81548152906001019060200180831161032857829003601f168201915b5050505050905090565b5f3361035c8185856104e9565b60019150505b92915050565b5f336103758582856104fb565b61038085858561057c565b506001949350505050565b5f600560075461039b9190610d56565b4310905090565b6103ac33826105d9565b50565b6103ba8233836104fb565b6103c482826105d9565b5050565b6060600480546102ce90610d0a565b5f3361035c81858561057c565b5f5f5f5f73943e6e07a7e8e791dafc44083e54041d743c46e96001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610438573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061045c9190610d69565b604051630b4c774160e11b81523060048201526006602160991b01602482015261271060448201529091505f906001600160a01b03831690631698ee8290606401602060405180830381865afa1580156104b8573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104dc9190610d69565b9530955091935090915050565b6104f6838383600161060d565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610576578181101561056857604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61057684848484035f61060d565b50505050565b6001600160a01b0383166105a557604051634b637e8f60e11b81525f600482015260240161055f565b6001600160a01b0382166105ce5760405163ec442f0560e01b81525f600482015260240161055f565b6104f68383836106df565b6001600160a01b03821661060257604051634b637e8f60e11b81525f600482015260240161055f565b6103c4825f836106df565b6001600160a01b0384166106365760405163e602df0560e01b81525f600482015260240161055f565b6001600160a01b03831661065f57604051634a1406b160e11b81525f600482015260240161055f565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561057657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516106d191815260200190565b60405180910390a350505050565b600754431180156106fe575060056007546106fa9190610d56565b4311155b156109e4575f73943e6e07a7e8e791dafc44083e54041d743c46e96001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610754573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107789190610d69565b604051630b4c774160e11b81523060048201526006602160991b01602482015261271060448201529091505f906001600160a01b03831690631698ee8290606401602060405180830381865afa1580156107d4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107f89190610d69565b9050806001600160a01b0316856001600160a01b031614801561082957506005546001600160a01b03858116911614155b801561084357506006546001600160a01b03858116911614155b156108ed57325f9081526009602052604081208054859290610866908490610d56565b909155505060085460649061087c90606e610d84565b6108869190610d9b565b325f9081526009602052604090205411156108ed5760405162461bcd60e51b815260206004820152602160248201527f4b656570696e6720322520706f6f6c204c696d69747320496e204b6f6e74726f6044820152601b60fa1b606482015260840161055f565b6006546001600160a01b0385811691161480159061091957506005546001600160a01b03858116911614155b80156109375750806001600160a01b0316846001600160a01b031614155b801561094b57506001600160a01b03851615155b156109e15760085483610972866001600160a01b03165f9081526020819052604090205490565b61097c9190610d56565b11156109e15760405162461bcd60e51b815260206004820152602e60248201527f4d61782077616c6c6574206c696d697420657863656564656420647572696e6760448201526d081b185d5b98da081c195c9a5bd960921b606482015260840161055f565b50505b600754431480156109fd57506001600160a01b03831615155b8015610a1757506005546001600160a01b03838116911614155b8015610a3157506005546001600160a01b03848116911614155b8015610a6457506005546001600160a01b038481169116148015610a6257506006546001600160a01b038381169116145b155b15610abd5760405162461bcd60e51b8152602060048201526024808201527f4e6f206275797320616c6c6f77656420647572696e67206c61756e636820626c6044820152636f636b2160e01b606482015260840161055f565b6104f68383836001600160a01b038316610aed578060025f828254610ae29190610d56565b90915550610b5d9050565b6001600160a01b0383165f9081526020819052604090205481811015610b3f5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161055f565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610b7957600280548290039055610b97565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bdc91815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146103ac575f5ffd5b5f5f60408385031215610c43575f5ffd5b8235610c4e81610c1e565b946020939093013593505050565b5f5f5f60608486031215610c6e575f5ffd5b8335610c7981610c1e565b92506020840135610c8981610c1e565b929592945050506040919091013590565b5f60208284031215610caa575f5ffd5b5035919050565b5f60208284031215610cc1575f5ffd5b8135610ccc81610c1e565b9392505050565b5f5f60408385031215610ce4575f5ffd5b8235610cef81610c1e565b91506020830135610cff81610c1e565b809150509250929050565b600181811c90821680610d1e57607f821691505b602082108103610d3c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561036257610362610d42565b5f60208284031215610d79575f5ffd5b8151610ccc81610c1e565b808202811582820484141761036257610362610d42565b5f82610db557634e487b7160e01b5f52601260045260245ffd5b50049056fea264697066735822122097e58110e0b2929c23b9eb0a2fb3a81677416da465f77ea9fa8c7c35d8cc44fe64736f6c634300081e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000f28a6af097a92c9d1b22d8782413e4278a48d4dd00000000000000000000000005e40bcba6e5e2f23c4bd87544c42ba3363c1aeb0000000000000000000000000000000000000000000000000000000000000006556e6970656700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006554e495045470000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Unipeg
Arg [1] : _symbol (string): UNIPEG
Arg [2] : _creator (address): 0xF28a6aF097A92c9D1b22D8782413E4278a48D4Dd
Arg [3] : _platform (address): 0x05E40bCBA6E5E2F23C4bd87544C42BA3363C1AEb
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000f28a6af097a92c9d1b22d8782413e4278a48d4dd
Arg [3] : 00000000000000000000000005e40bcba6e5e2f23c4bd87544c42ba3363c1aeb
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 556e697065670000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 554e495045470000000000000000000000000000000000000000000000000000
Net Worth in USD
Net Worth in ETH
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.