Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 145 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 24137148 | 6 hrs ago | IN | 0 ETH | 0.00004754 | ||||
| Approve | 24133978 | 16 hrs ago | IN | 0 ETH | 0.0000332 | ||||
| Approve | 24133929 | 16 hrs ago | IN | 0 ETH | 0.00003411 | ||||
| Approve | 24133924 | 16 hrs ago | IN | 0 ETH | 0.00003501 | ||||
| Approve | 24133908 | 16 hrs ago | IN | 0 ETH | 0.00003457 | ||||
| Approve | 24133903 | 16 hrs ago | IN | 0 ETH | 0.00003709 | ||||
| Approve | 24133886 | 16 hrs ago | IN | 0 ETH | 0.00003456 | ||||
| Approve | 24133842 | 17 hrs ago | IN | 0 ETH | 0.00003003 | ||||
| Approve | 24133820 | 17 hrs ago | IN | 0 ETH | 0.00002836 | ||||
| Approve | 24133813 | 17 hrs ago | IN | 0 ETH | 0.0000283 | ||||
| Approve | 24133769 | 17 hrs ago | IN | 0 ETH | 0.00009742 | ||||
| Approve | 24130081 | 29 hrs ago | IN | 0 ETH | 0.00023289 | ||||
| Approve | 24128662 | 34 hrs ago | IN | 0 ETH | 0.00009403 | ||||
| Approve | 24128187 | 36 hrs ago | IN | 0 ETH | 0.00009408 | ||||
| Approve | 24127523 | 38 hrs ago | IN | 0 ETH | 0.00000527 | ||||
| Approve | 24127520 | 38 hrs ago | IN | 0 ETH | 0.000008 | ||||
| Approve | 24124229 | 2 days ago | IN | 0 ETH | 0.00009609 | ||||
| Approve | 24123671 | 2 days ago | IN | 0 ETH | 0.00000498 | ||||
| Approve | 24123108 | 2 days ago | IN | 0 ETH | 0.00009383 | ||||
| Approve | 24122969 | 2 days ago | IN | 0 ETH | 0.0000023 | ||||
| Approve | 24122884 | 2 days ago | IN | 0 ETH | 0.00000625 | ||||
| Transfer | 24122881 | 2 days ago | IN | 0 ETH | 0.00011091 | ||||
| Transfer | 24122877 | 2 days ago | IN | 0 ETH | 0.00011108 | ||||
| Approve | 24122312 | 2 days ago | IN | 0 ETH | 0.00000201 | ||||
| Transfer | 24121016 | 2 days ago | IN | 0 ETH | 0.00009957 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| 0x604060c0 | 24094274 | 6 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Token
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 100 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
// Qian Exchange - https://qian.ag
pragma solidity ^0.8.24;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
interface IUniswapV4PoolManager {
function getPool(bytes32 poolId) external view returns (address);
}
import "./errors/Errors.sol";
contract Token is ERC20, ERC20Burnable {
address public platform;
address public creator;
uint256 public constant MAX_SUPPLY = 1_000_000_000 * 10 ** 18;
uint256 private launchBlock;
uint256 private maxTxAmount;
uint256 public launchPeriodBlocks;
uint256 public maxWalletPercentage;
address public immutable POOL_MANAGER;
address public immutable WETH;
mapping(address => uint256) private tokensFromPoolPerOrigin;
/// @notice Flag to prevent minting after initial supply
bool private _initialMintComplete;
constructor(
string memory _name,
string memory _symbol,
address _creator,
address _platform,
address _poolManager,
address _weth,
uint256 _launchPeriodBlocks,
uint256 _maxWalletPercentage
) ERC20(_name, _symbol) {
platform = _platform;
creator = _creator;
POOL_MANAGER = _poolManager;
WETH = _weth;
launchPeriodBlocks = _launchPeriodBlocks;
maxWalletPercentage = _maxWalletPercentage;
launchBlock = block.number;
if (_maxWalletPercentage > 0) {
maxTxAmount = (MAX_SUPPLY * _maxWalletPercentage) / 100;
} else {
maxTxAmount = 0;
}
_mint(_platform, MAX_SUPPLY);
// Lock minting forever
_initialMintComplete = true;
}
function _update(address from, address to, uint256 value) internal override {
// Prevent any minting after initial supply (from == address(0) means mint)
if (from == address(0) && _initialMintComplete) {
revert MintingDisabled();
}
if (launchPeriodBlocks > 0) {
uint256 currentBlock = block.number;
bool isLaunchBlock = currentBlock == launchBlock;
bool isLaunchPeriod = currentBlock > launchBlock && currentBlock <= launchBlock + launchPeriodBlocks;
if (isLaunchBlock) {
bool isMint = from == address(0);
bool isPlatformToCreator = from == platform && to == creator;
bool isPlatformTransfer = from == platform || to == platform;
if (!isMint && !isPlatformToCreator && !isPlatformTransfer) {
revert LaunchBuyBlocked();
}
}
if (isLaunchPeriod) {
if (maxWalletPercentage > 0 && to != creator && to != platform && from != address(0)) {
if (balanceOf(to) + value > maxTxAmount) revert MaxWalletExceeded();
}
}
}
super._update(from, to, value);
}
function changeCreator(address newCreator) external {
if (msg.sender != platform) revert NotController();
creator = newCreator;
}
}// SPDX-License-Identifier: MIT // Qian Exchange - https://qian.ag pragma solidity ^0.8.24; error BadRouterConfig(); error DeployDisabled(); error SplitTooHigh(); error NoWETH(); error NoETH(); error FeeSplitMismatch(); error NewCreatorZero(); error InsufficientDeployFee(); error InvalidFeeVault(); error InvalidConfig(); error InvalidReceiver(); error InvalidTickRange(); error NotController(); error Unauthorized(); error TransferFailed(); error Token1NotWETH(); error PoolInitializationFailed(); error LaunchLimitExceeded(); error LaunchBuyBlocked(); error MaxWalletExceeded(); error MintingDisabled(); error UnlockCallbackFailed(string reason); error LiquidityAdditionFailed(string reason); error CurrencySettlementFailed(string reason); error InsufficientTokenBalance(uint256 required, uint256 available);
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.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;
}
/// @inheritdoc IERC20
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/// @inheritdoc IERC20
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;
}
/// @inheritdoc IERC20
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.4.0) (token/ERC20/IERC20.sol)
pragma solidity >=0.4.16;
/**
* @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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity >=0.6.2;
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.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.4.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;
/**
* @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);
}{
"optimizer": {
"enabled": true,
"runs": 100
},
"evmVersion": "paris",
"viaIR": true,
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_creator","type":"address"},{"internalType":"address","name":"_platform","type":"address"},{"internalType":"address","name":"_poolManager","type":"address"},{"internalType":"address","name":"_weth","type":"address"},{"internalType":"uint256","name":"_launchPeriodBlocks","type":"uint256"},{"internalType":"uint256","name":"_maxWalletPercentage","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"},{"inputs":[],"name":"LaunchBuyBlocked","type":"error"},{"inputs":[],"name":"MaxWalletExceeded","type":"error"},{"inputs":[],"name":"MintingDisabled","type":"error"},{"inputs":[],"name":"NotController","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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"POOL_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":[{"internalType":"address","name":"newCreator","type":"address"}],"name":"changeCreator","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":"launchPeriodBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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
604060c0815234620005fe5762001295803803806200001e8162000603565b928339810161010082820312620005fe5781516001600160401b038111620005fe57816200004e91840162000629565b602083015190916001600160401b038211620005fe576200007191840162000629565b906200007f8484016200069b565b926200008e606082016200069b565b926200009d608083016200069b565b620000ab60a084016200069b565b9160e060c08501519401519480519060018060401b038211620004cd5760035490600182811c92168015620005f3575b6020831014620004ac5781601f8493116200057e575b50602090601f8311600114620004ef57600092620004e3575b50508160011b916000199060031b1c1916176003555b8051906001600160401b038211620004cd5760045490600182811c92168015620004c2575b6020831014620004ac5781601f84931162000437575b50602090601f8311600114620003ac57600092620003a0575b50508160011b916000199060031b1c1916176004555b600580546001600160a01b03199081166001600160a01b03978816908117909255600680549091169787169790971790965560805260a052600955600a81905543600755801562000394576b033b2e3c9fd0803ce800000090808202918204036200035557606490046008555b81156200037c5760ff600c54166200036b57600954806200029d575b505062000222600254620006b0565b60025580600052600060205260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60208483206b033b2e3c9fd0803ce8000000908181540190558551908152a3600160ff19600c541617600c5551610bca9081620006cb823960805181610394015260a051816101550152f35b60075480431191826200033f575b5050620002ba575b8062000213565b600a54151590816200032f575b816200031f575b508062000316575b620002e3575b38620002b3565b806000526000602052620002fb8260002054620006b0565b6008541015620002dc578151632ce93b5960e01b8152600490fd5b506000620002d6565b90506005541681141538620002ce565b60065481168314159150620002c7565b81019150811062000355574311153880620002ab565b634e487b7160e01b600052601160045260246000fd5b825163af79b43760e01b8152600490fd5b825163ec442f0560e01b815260006004820152602490fd5b506000600855620001f7565b01519050388062000174565b600460009081527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b9350601f198516905b8181106200041e575090846001959493921062000404575b505050811b016004556200018a565b015160001960f88460031b161c19169055388080620003f5565b92936020600181928786015181550195019301620003dd565b60046000529091507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b601f840160051c81019160208510620004a1575b90601f859493920160051c01905b8181106200049157506200015b565b6000815584935060010162000482565b909150819062000474565b634e487b7160e01b600052602260045260246000fd5b91607f169162000145565b634e487b7160e01b600052604160045260246000fd5b0151905038806200010a565b6003600090815293507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b91905b601f198416851062000562576001945083601f1981161062000548575b505050811b0160035562000120565b015160001960f88460031b161c1916905538808062000539565b818101518355602094850194600190930192909101906200051c565b60036000529091507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b601f840160051c81019160208510620005e8575b90601f859493920160051c01905b818110620005d85750620000f1565b60008155849350600101620005c9565b9091508190620005bb565b91607f1691620000db565b600080fd5b6040519190601f01601f191682016001600160401b03811183821017620004cd57604052565b919080601f84011215620005fe5782516001600160401b038111620004cd576020906200065f601f8201601f1916830162000603565b92818452828287010111620005fe5760005b8181106200068757508260009394955001015290565b858101830151848201840152820162000671565b51906001600160a01b0382168203620005fe57565b906b033b2e3c9fd0803ce80000008201809211620003555756fe608060408181526004918236101561001657600080fd5b600092833560e01c91826302d05d3f146106505750816306fdde0314610591578163095ea7b3146104e757816318160ddd146104c857816323b872dd1461048b578163313ce5671461046f57816332cb6b0c1461044857816342966c681461042a5781634bde38c814610401578163599ca397146103e25781635e97c708146103c357816362308e851461037f57816370a082311461034857816374580e2f146102ee57816379cc6790146102b857816395d89b41146101b457508063a9059cbb14610184578063ad5c4648146101415763dd62ed3e146100f657600080fd5b3461013d578060031936011261013d57806020926101126106be565b61011a6106d9565b6001600160a01b0391821683526001865283832091168252845220549051908152f35b5080fd5b503461013d578160031936011261013d57517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b503461013d578060031936011261013d576020906101ad6101a36106be565b60243590336107c2565b5160018152f35b83833461013d578160031936011261013d5780519082845460018160011c90600183169283156102ae575b602093848410811461029b5783885290811561027f5750600114610247575b505050829003601f01601f191682019267ffffffffffffffff8411838510176102345750829182610230925282610675565b0390f35b634e487b7160e01b815260418552602490fd5b919250868652828620918387935b83851061026b57505050508301018580806101fe565b805488860183015293019284908201610255565b60ff1916878501525050151560051b84010190508580806101fe565b634e487b7160e01b895260228a52602489fd5b91607f16916101df565b50503461013d573660031901126102eb576102e86102d46106be565b602435906102e38233836106ef565b6109bc565b80f35b80fd5b905034610344576020366003190112610344576103096106be565b6005546001600160a01b039391929190841633036103375750501660018060a01b0319600654161760065580f35b516323019e6760e01b8152fd5b8280fd5b50503461013d57602036600319011261013d5760209181906001600160a01b036103706106be565b16815280845220549051908152f35b50503461013d578160031936011261013d57517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b50503461013d578160031936011261013d576020906009549051908152f35b50503461013d578160031936011261013d57602090600a549051908152f35b50503461013d578160031936011261013d5760055490516001600160a01b039091168152602090f35b83903461013d57602036600319011261013d576102e89035336109bc565b50503461013d578160031936011261013d57602090516b033b2e3c9fd0803ce80000008152f35b50503461013d578160031936011261013d576020905160128152f35b50503461013d57606036600319011261013d576020906101ad6104ac6106be565b6104b46106d9565b604435916104c38333836106ef565b6107c2565b50503461013d578160031936011261013d576020906002549051908152f35b9050346103445781600319360112610344576105016106be565b60243590331561057a576001600160a01b031691821561056357508083602095338152600187528181208582528752205582519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925843392a35160018152f35b8351634a1406b160e11b8152908101859052602490fd5b835163e602df0560e01b8152808401869052602490fd5b83833461013d578160031936011261013d578051908260035460018160011c9060018316928315610646575b602093848410811461029b5783885290811561027f575060011461060d57505050829003601f01601f191682019267ffffffffffffffff8411838510176102345750829182610230925282610675565b91925060038652828620918387935b83851061063257505050508301018580806101fe565b80548886018301529301928490820161061c565b91607f16916105bd565b84903461013d578160031936011261013d576006546001600160a01b03168152602090f35b6020808252825181830181905290939260005b8281106106aa57505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610688565b600435906001600160a01b03821682036106d457565b600080fd5b602435906001600160a01b03821682036106d457565b9160018060a01b03809316916000938385526001602052604093848620918316918287526020528486205492600019841061072e575b50505050505050565b8484106107925750801561077a57811561076257855260016020528385209085526020520391205538808080808080610725565b8451634a1406b160e11b815260048101879052602490fd5b845163e602df0560e01b815260048101879052602490fd5b8551637dc7a0d960e11b81526001600160a01b039190911660048201526024810184905260448101859052606490fd5b6001600160a01b03928382169290919083156109a357841693841561098a576009548061087d575b50506000908382528160205260408220549083821061084b575091604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60405163391434e360e21b81526001600160a01b03919091166004820152602481019190915260448101839052606490fd5b6007548043119182610974575b50431461091a575b61089d575b806107ea565b600a541515908161090b575b816108fc575b50806108f4575b6108c1575b38610897565b8360005260006020526108d982604060002054610b71565b60085410156108bb57604051632ce93b5960e01b8152600490fd5b5060016108b6565b905060055416841415386108af565b600654811686141591506108a9565b816005541680861480918192610966575b821561095c575b50159081610953575b501561089257604051632e8fd78960e21b8152600490fd5b9050153861093b565b8814915038610932565b60065485168914915061092b565b81610980929350610b71565b431115903861088a565b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b906001600160a01b03808316919082156109a35760095480610a68575b505060009282845283602052604084205490828210610a365750817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef926020928587528684520360408620558060025403600255604051908152a3565b60405163391434e360e21b81526001600160a01b03919091166004820152602481019190915260448101829052606490fd5b6007548043119182610b5b575b504314610b03575b610a88575b806109d9565b600a5415159081610af5575b81610ae7575b5080610adf575b610aac575b38610a82565b600080526000602052610ac481604060002054610b71565b6008541015610aa657604051632ce93b5960e01b8152600490fd5b506001610aa1565b905060055416151538610a9a565b600654811615159150610a94565b816005541680851480918192610b4e575b8215610b45575b50159081610b3c575b5015610a7d57604051632e8fd78960e21b8152600490fd5b90501538610b24565b15915038610b1b565b6006548516159150610b14565b81610b67929350610b71565b4311159038610a75565b91908201809211610b7e57565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220739b4659e806b48b1a5358f7166f7e2c96599eb48e2721729f5bdd5bff4dad1f64736f6c63430008180033000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000001a4028dc595c31d8b55c719960ad179c9dd43a1c0000000000000000000000001822b7eff149eb14f62dca1bafb0cbbf337387cb000000000000000000000000000000000004444c5dc75cb358380d2e3de08a90000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008536e6f7762616c6c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008534e4f5742414c4c000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060408181526004918236101561001657600080fd5b600092833560e01c91826302d05d3f146106505750816306fdde0314610591578163095ea7b3146104e757816318160ddd146104c857816323b872dd1461048b578163313ce5671461046f57816332cb6b0c1461044857816342966c681461042a5781634bde38c814610401578163599ca397146103e25781635e97c708146103c357816362308e851461037f57816370a082311461034857816374580e2f146102ee57816379cc6790146102b857816395d89b41146101b457508063a9059cbb14610184578063ad5c4648146101415763dd62ed3e146100f657600080fd5b3461013d578060031936011261013d57806020926101126106be565b61011a6106d9565b6001600160a01b0391821683526001865283832091168252845220549051908152f35b5080fd5b503461013d578160031936011261013d57517f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b03168152602090f35b503461013d578060031936011261013d576020906101ad6101a36106be565b60243590336107c2565b5160018152f35b83833461013d578160031936011261013d5780519082845460018160011c90600183169283156102ae575b602093848410811461029b5783885290811561027f5750600114610247575b505050829003601f01601f191682019267ffffffffffffffff8411838510176102345750829182610230925282610675565b0390f35b634e487b7160e01b815260418552602490fd5b919250868652828620918387935b83851061026b57505050508301018580806101fe565b805488860183015293019284908201610255565b60ff1916878501525050151560051b84010190508580806101fe565b634e487b7160e01b895260228a52602489fd5b91607f16916101df565b50503461013d573660031901126102eb576102e86102d46106be565b602435906102e38233836106ef565b6109bc565b80f35b80fd5b905034610344576020366003190112610344576103096106be565b6005546001600160a01b039391929190841633036103375750501660018060a01b0319600654161760065580f35b516323019e6760e01b8152fd5b8280fd5b50503461013d57602036600319011261013d5760209181906001600160a01b036103706106be565b16815280845220549051908152f35b50503461013d578160031936011261013d57517f000000000000000000000000000000000004444c5dc75cb358380d2e3de08a906001600160a01b03168152602090f35b50503461013d578160031936011261013d576020906009549051908152f35b50503461013d578160031936011261013d57602090600a549051908152f35b50503461013d578160031936011261013d5760055490516001600160a01b039091168152602090f35b83903461013d57602036600319011261013d576102e89035336109bc565b50503461013d578160031936011261013d57602090516b033b2e3c9fd0803ce80000008152f35b50503461013d578160031936011261013d576020905160128152f35b50503461013d57606036600319011261013d576020906101ad6104ac6106be565b6104b46106d9565b604435916104c38333836106ef565b6107c2565b50503461013d578160031936011261013d576020906002549051908152f35b9050346103445781600319360112610344576105016106be565b60243590331561057a576001600160a01b031691821561056357508083602095338152600187528181208582528752205582519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925843392a35160018152f35b8351634a1406b160e11b8152908101859052602490fd5b835163e602df0560e01b8152808401869052602490fd5b83833461013d578160031936011261013d578051908260035460018160011c9060018316928315610646575b602093848410811461029b5783885290811561027f575060011461060d57505050829003601f01601f191682019267ffffffffffffffff8411838510176102345750829182610230925282610675565b91925060038652828620918387935b83851061063257505050508301018580806101fe565b80548886018301529301928490820161061c565b91607f16916105bd565b84903461013d578160031936011261013d576006546001600160a01b03168152602090f35b6020808252825181830181905290939260005b8281106106aa57505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610688565b600435906001600160a01b03821682036106d457565b600080fd5b602435906001600160a01b03821682036106d457565b9160018060a01b03809316916000938385526001602052604093848620918316918287526020528486205492600019841061072e575b50505050505050565b8484106107925750801561077a57811561076257855260016020528385209085526020520391205538808080808080610725565b8451634a1406b160e11b815260048101879052602490fd5b845163e602df0560e01b815260048101879052602490fd5b8551637dc7a0d960e11b81526001600160a01b039190911660048201526024810184905260448101859052606490fd5b6001600160a01b03928382169290919083156109a357841693841561098a576009548061087d575b50506000908382528160205260408220549083821061084b575091604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60405163391434e360e21b81526001600160a01b03919091166004820152602481019190915260448101839052606490fd5b6007548043119182610974575b50431461091a575b61089d575b806107ea565b600a541515908161090b575b816108fc575b50806108f4575b6108c1575b38610897565b8360005260006020526108d982604060002054610b71565b60085410156108bb57604051632ce93b5960e01b8152600490fd5b5060016108b6565b905060055416841415386108af565b600654811686141591506108a9565b816005541680861480918192610966575b821561095c575b50159081610953575b501561089257604051632e8fd78960e21b8152600490fd5b9050153861093b565b8814915038610932565b60065485168914915061092b565b81610980929350610b71565b431115903861088a565b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b906001600160a01b03808316919082156109a35760095480610a68575b505060009282845283602052604084205490828210610a365750817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef926020928587528684520360408620558060025403600255604051908152a3565b60405163391434e360e21b81526001600160a01b03919091166004820152602481019190915260448101829052606490fd5b6007548043119182610b5b575b504314610b03575b610a88575b806109d9565b600a5415159081610af5575b81610ae7575b5080610adf575b610aac575b38610a82565b600080526000602052610ac481604060002054610b71565b6008541015610aa657604051632ce93b5960e01b8152600490fd5b506001610aa1565b905060055416151538610a9a565b600654811615159150610a94565b816005541680851480918192610b4e575b8215610b45575b50159081610b3c575b5015610a7d57604051632e8fd78960e21b8152600490fd5b90501538610b24565b15915038610b1b565b6006548516159150610b14565b81610b67929350610b71565b4311159038610a75565b91908201809211610b7e57565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220739b4659e806b48b1a5358f7166f7e2c96599eb48e2721729f5bdd5bff4dad1f64736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000001a4028dc595c31d8b55c719960ad179c9dd43a1c0000000000000000000000001822b7eff149eb14f62dca1bafb0cbbf337387cb000000000000000000000000000000000004444c5dc75cb358380d2e3de08a90000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008536e6f7762616c6c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008534e4f5742414c4c000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Snowball
Arg [1] : _symbol (string): SNOWBALL
Arg [2] : _creator (address): 0x1A4028DC595c31d8B55C719960aD179c9dD43A1C
Arg [3] : _platform (address): 0x1822B7EFF149eB14F62dCa1BAfB0CBbf337387cB
Arg [4] : _poolManager (address): 0x000000000004444c5dc75cB358380D2e3dE08A90
Arg [5] : _weth (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [6] : _launchPeriodBlocks (uint256): 0
Arg [7] : _maxWalletPercentage (uint256): 0
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000001a4028dc595c31d8b55c719960ad179c9dd43a1c
Arg [3] : 0000000000000000000000001822b7eff149eb14f62dca1bafb0cbbf337387cb
Arg [4] : 000000000000000000000000000000000004444c5dc75cb358380d2e3de08a90
Arg [5] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [9] : 536e6f7762616c6c000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [11] : 534e4f5742414c4c000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 36 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.