Feature Tip: Add private address tag to any address under My Name Tag !
This address has been reported to be a honeypot. Proceed with caution.
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 132 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 19815637 | 283 days ago | IN | 0 ETH | 0.00023704 | ||||
Approve | 18337794 | 490 days ago | IN | 0 ETH | 0.00024136 | ||||
Approve | 17994510 | 539 days ago | IN | 0 ETH | 0.00074676 | ||||
Approve | 17964796 | 543 days ago | IN | 0 ETH | 0.00159963 | ||||
Transfer | 17964778 | 543 days ago | IN | 0 ETH | 0.00121858 | ||||
Approve | 17940937 | 546 days ago | IN | 0 ETH | 0.0008467 | ||||
Renounce Ownersh... | 17935212 | 547 days ago | IN | 0 ETH | 0.00073552 | ||||
Approve | 17932818 | 547 days ago | IN | 0 ETH | 0.0008174 | ||||
Transfer | 17924504 | 548 days ago | IN | 0 ETH | 0.00063932 | ||||
Transfer | 17924504 | 548 days ago | IN | 0 ETH | 0.00063932 | ||||
Transfer | 17924504 | 548 days ago | IN | 0 ETH | 0.00063932 | ||||
Transfer | 17924504 | 548 days ago | IN | 0 ETH | 0.00097436 | ||||
Approve | 17924500 | 548 days ago | IN | 0 ETH | 0.00092151 | ||||
Approve | 17919315 | 549 days ago | IN | 0 ETH | 0.00066269 | ||||
Approve | 17919277 | 549 days ago | IN | 0 ETH | 0.00069893 | ||||
Remove Liquidity... | 17919245 | 549 days ago | IN | 0 ETH | 0.00036084 | ||||
Approve | 17919195 | 549 days ago | IN | 0 ETH | 0.00064727 | ||||
Transfer | 17912051 | 550 days ago | IN | 0 ETH | 0.00084297 | ||||
Transfer | 17905269 | 551 days ago | IN | 0 ETH | 0.00065448 | ||||
Approve | 17903975 | 551 days ago | IN | 0 ETH | 0.00057985 | ||||
Transfer | 17903966 | 551 days ago | IN | 0 ETH | 0.00063977 | ||||
Approve | 17899547 | 552 days ago | IN | 0 ETH | 0.00076954 | ||||
Approve | 17899528 | 552 days ago | IN | 0 ETH | 0.00076097 | ||||
Approve | 17899357 | 552 days ago | IN | 0 ETH | 0.00114933 | ||||
Approve | 17899320 | 552 days ago | IN | 0 ETH | 0.00073654 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MemeBuddha
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity = 0.8.18; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; /// @custom:security-contact [email protected] contract MemeBuddha is ERC20, ERC20Burnable, Ownable { address public charityWallet; address public communityWallet; mapping (address => bool) public liquidityPools; constructor(address _charityWallet, address _communityWallet) ERC20("Meme Buddha", "MEBU") { require(_charityWallet != address(0), "Invalid charity wallet address"); require(_communityWallet != address(0), "Invalid community wallet address"); _mint(msg.sender, 108000000000 * 10 ** decimals()); charityWallet = _charityWallet; communityWallet = _communityWallet; } function addLiquidityPool(address _liquidityPool) public onlyOwner { require(_liquidityPool != address(0), "Invalid liquidity pool address"); liquidityPools[_liquidityPool] = true; } function removeLiquidityPool(address _liquidityPool) public onlyOwner { require(_liquidityPool != address(0), "Invalid liquidity pool address"); liquidityPools[_liquidityPool] = false; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override { if (liquidityPools[to] && from != charityWallet && from != communityWallet) { uint256 fee = amount * 6 / 100; uint256 distributeAmount = fee / 3; uint256 amountAfterFee = amount - fee; _burn(from, distributeAmount); _transfer(from, charityWallet, distributeAmount); // Calculate the remaining fee and distribute it to the community wallet uint256 remainingFee = fee - (2 * distributeAmount); _transfer(from, communityWallet, remainingFee); // Update the amount being transferred to the liquidity pool amount = amountAfterFee; } super._beforeTokenTransfer(from, to, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../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 `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` 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 * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * 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 ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these 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 override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override 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 `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` 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. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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 v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` 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 amount) external returns (bool); }
{ "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
[{"inputs":[{"internalType":"address","name":"_charityWallet","type":"address"},{"internalType":"address","name":"_communityWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_liquidityPool","type":"address"}],"name":"addLiquidityPool","outputs":[],"stateMutability":"nonpayable","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":"amount","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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityPools","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityPool","type":"address"}],"name":"removeLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620036ae380380620036ae833981810160405281019062000037919062000bd6565b6040518060400160405280600b81526020017f4d656d65204275646468610000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d454255000000000000000000000000000000000000000000000000000000008152508160039081620000b4919062000e97565b508060049081620000c6919062000e97565b505050620000e9620000dd6200029860201b60201c565b620002a060201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200015b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001529062000fdf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001c49062001051565b60405180910390fd5b6200020e33620001e26200036660201b60201c565b600a620001f0919062001203565b6419254d380062000202919062001254565b6200036f60201b60201c565b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062001714565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003d890620012ef565b60405180910390fd5b620003f560008383620004dc60201b60201c565b806002600082825462000409919062001311565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004bc91906200135d565b60405180910390a3620004d860008383620006ec60201b60201c565b5050565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015620005845750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015620005df5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15620006cf5760006064600683620005f8919062001254565b620006049190620013a9565b90506000600382620006179190620013a9565b905060008284620006299190620013e1565b90506200063d8683620006f160201b60201c565b6200067286600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684620008d660201b60201c565b600082600262000683919062001254565b84620006909190620013e1565b9050620006c787600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683620008d660201b60201c565b819450505050505b620006e783838362000b6760201b62000a521760201c565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000763576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075a9062001492565b60405180910390fd5b6200077782600083620004dc60201b60201c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000800576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f7906200152a565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051620008b591906200135d565b60405180910390a3620008d183600084620006ec60201b60201c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000948576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200093f90620015c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009b1906200165a565b60405180910390fd5b620009cd838383620004dc60201b60201c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000a56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4d90620016f2565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405162000b4691906200135d565b60405180910390a362000b61848484620006ec60201b60201c565b50505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b9e8262000b71565b9050919050565b62000bb08162000b91565b811462000bbc57600080fd5b50565b60008151905062000bd08162000ba5565b92915050565b6000806040838503121562000bf05762000bef62000b6c565b5b600062000c008582860162000bbf565b925050602062000c138582860162000bbf565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c9f57607f821691505b60208210810362000cb55762000cb462000c57565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d1f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ce0565b62000d2b868362000ce0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d7862000d7262000d6c8462000d43565b62000d4d565b62000d43565b9050919050565b6000819050919050565b62000d948362000d57565b62000dac62000da38262000d7f565b84845462000ced565b825550505050565b600090565b62000dc362000db4565b62000dd081848462000d89565b505050565b5b8181101562000df85762000dec60008262000db9565b60018101905062000dd6565b5050565b601f82111562000e475762000e118162000cbb565b62000e1c8462000cd0565b8101602085101562000e2c578190505b62000e4462000e3b8562000cd0565b83018262000dd5565b50505b505050565b600082821c905092915050565b600062000e6c6000198460080262000e4c565b1980831691505092915050565b600062000e87838362000e59565b9150826002028217905092915050565b62000ea28262000c1d565b67ffffffffffffffff81111562000ebe5762000ebd62000c28565b5b62000eca825462000c86565b62000ed782828562000dfc565b600060209050601f83116001811462000f0f576000841562000efa578287015190505b62000f06858262000e79565b86555062000f76565b601f19841662000f1f8662000cbb565b60005b8281101562000f495784890151825560018201915060208501945060208101905062000f22565b8683101562000f69578489015162000f65601f89168262000e59565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f496e76616c696420636861726974792077616c6c657420616464726573730000600082015250565b600062000fc7601e8362000f7e565b915062000fd48262000f8f565b602082019050919050565b6000602082019050818103600083015262000ffa8162000fb8565b9050919050565b7f496e76616c696420636f6d6d756e6974792077616c6c65742061646472657373600082015250565b60006200103960208362000f7e565b9150620010468262001001565b602082019050919050565b600060208201905081810360008301526200106c816200102a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200110157808604811115620010d957620010d862001073565b5b6001851615620010e95780820291505b8081029050620010f985620010a2565b9450620010b9565b94509492505050565b6000826200111c5760019050620011ef565b816200112c5760009050620011ef565b8160018114620011455760028114620011505762001186565b6001915050620011ef565b60ff84111562001165576200116462001073565b5b8360020a9150848211156200117f576200117e62001073565b5b50620011ef565b5060208310610133831016604e8410600b8410161715620011c05782820a905083811115620011ba57620011b962001073565b5b620011ef565b620011cf8484846001620010af565b92509050818404811115620011e957620011e862001073565b5b81810290505b9392505050565b600060ff82169050919050565b6000620012108262000d43565b91506200121d83620011f6565b92506200124c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200110a565b905092915050565b6000620012618262000d43565b91506200126e8362000d43565b92508282026200127e8162000d43565b9150828204841483151762001298576200129762001073565b5b5092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620012d7601f8362000f7e565b9150620012e4826200129f565b602082019050919050565b600060208201905081810360008301526200130a81620012c8565b9050919050565b60006200131e8262000d43565b91506200132b8362000d43565b925082820190508082111562001346576200134562001073565b5b92915050565b620013578162000d43565b82525050565b60006020820190506200137460008301846200134c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620013b68262000d43565b9150620013c38362000d43565b925082620013d657620013d56200137a565b5b828204905092915050565b6000620013ee8262000d43565b9150620013fb8362000d43565b925082820390508181111562001416576200141562001073565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006200147a60218362000f7e565b915062001487826200141c565b604082019050919050565b60006020820190508181036000830152620014ad816200146b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006200151260228362000f7e565b91506200151f82620014b4565b604082019050919050565b60006020820190508181036000830152620015458162001503565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000620015aa60258362000f7e565b9150620015b7826200154c565b604082019050919050565b60006020820190508181036000830152620015dd816200159b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006200164260238362000f7e565b91506200164f82620015e4565b604082019050919050565b60006020820190508181036000830152620016758162001633565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000620016da60268362000f7e565b9150620016e7826200167c565b604082019050919050565b600060208201905081810360008301526200170d81620016cb565b9050919050565b611f8a80620017246000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806379cc6790116100b8578063a9059cbb1161007c578063a9059cbb14610352578063ae22107f14610382578063c75748391461039e578063dd62ed3e146103bc578063ee6a934c146103ec578063f2fde38b1461040857610137565b806379cc6790146102ac5780637b208769146102c85780638da5cb5b146102e657806395d89b4114610304578063a457c2d71461032257610137565b8063313ce567116100ff578063313ce56714610208578063395093511461022657806342966c681461025657806370a0823114610272578063715018a6146102a257610137565b806306fdde031461013c578063095ea7b31461015a5780630b0fd47e1461018a57806318160ddd146101ba57806323b872dd146101d8575b600080fd5b610144610424565b60405161015191906114ac565b60405180910390f35b610174600480360381019061016f9190611567565b6104b6565b60405161018191906115c2565b60405180910390f35b6101a4600480360381019061019f91906115dd565b6104d9565b6040516101b191906115c2565b60405180910390f35b6101c26104f9565b6040516101cf9190611619565b60405180910390f35b6101f260048036038101906101ed9190611634565b610503565b6040516101ff91906115c2565b60405180910390f35b610210610532565b60405161021d91906116a3565b60405180910390f35b610240600480360381019061023b9190611567565b61053b565b60405161024d91906115c2565b60405180910390f35b610270600480360381019061026b91906116be565b610572565b005b61028c600480360381019061028791906115dd565b610586565b6040516102999190611619565b60405180910390f35b6102aa6105ce565b005b6102c660048036038101906102c19190611567565b6105e2565b005b6102d0610602565b6040516102dd91906116fa565b60405180910390f35b6102ee610628565b6040516102fb91906116fa565b60405180910390f35b61030c610652565b60405161031991906114ac565b60405180910390f35b61033c60048036038101906103379190611567565b6106e4565b60405161034991906115c2565b60405180910390f35b61036c60048036038101906103679190611567565b61075b565b60405161037991906115c2565b60405180910390f35b61039c600480360381019061039791906115dd565b61077e565b005b6103a6610850565b6040516103b391906116fa565b60405180910390f35b6103d660048036038101906103d19190611715565b610876565b6040516103e39190611619565b60405180910390f35b610406600480360381019061040191906115dd565b6108fd565b005b610422600480360381019061041d91906115dd565b6109cf565b005b60606003805461043390611784565b80601f016020809104026020016040519081016040528092919081815260200182805461045f90611784565b80156104ac5780601f10610481576101008083540402835291602001916104ac565b820191906000526020600020905b81548152906001019060200180831161048f57829003601f168201915b5050505050905090565b6000806104c1610a57565b90506104ce818585610a5f565b600191505092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b60008061050e610a57565b905061051b858285610c28565b610526858585610cb4565b60019150509392505050565b60006012905090565b600080610546610a57565b90506105678185856105588589610876565b61056291906117e4565b610a5f565b600191505092915050565b61058361057d610a57565b82610f2a565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105d66110f7565b6105e06000611175565b565b6105f4826105ee610a57565b83610c28565b6105fe8282610f2a565b5050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461066190611784565b80601f016020809104026020016040519081016040528092919081815260200182805461068d90611784565b80156106da5780601f106106af576101008083540402835291602001916106da565b820191906000526020600020905b8154815290600101906020018083116106bd57829003601f168201915b5050505050905090565b6000806106ef610a57565b905060006106fd8286610876565b905083811015610742576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107399061188a565b60405180910390fd5b61074f8286868403610a5f565b60019250505092915050565b600080610766610a57565b9050610773818585610cb4565b600191505092915050565b6107866110f7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec906118f6565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109056110f7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b906118f6565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6109d76110f7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d90611988565b60405180910390fd5b610a4f81611175565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac590611a1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490611aac565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c1b9190611619565b60405180910390a3505050565b6000610c348484610876565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cae5781811015610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790611b18565b60405180910390fd5b610cad8484848403610a5f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a90611baa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990611c3c565b60405180910390fd5b610d9d83838361123b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90611cce565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f119190611619565b60405180910390a3610f24848484611417565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090611d60565b60405180910390fd5b610fa58260008361123b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290611df2565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110de9190611619565b60405180910390a36110f283600084611417565b505050565b6110ff610a57565b73ffffffffffffffffffffffffffffffffffffffff1661111d610628565b73ffffffffffffffffffffffffffffffffffffffff1614611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90611e5e565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156112e25750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561133c5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561140757600060646006836113529190611e7e565b61135c9190611eef565b9050600060038261136d9190611eef565b90506000828461137d9190611f20565b90506113898683610f2a565b6113b686600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610cb4565b60008260026113c59190611e7e565b846113d09190611f20565b90506113ff87600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610cb4565b819450505050505b611412838383610a52565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561145657808201518184015260208101905061143b565b60008484015250505050565b6000601f19601f8301169050919050565b600061147e8261141c565b6114888185611427565b9350611498818560208601611438565b6114a181611462565b840191505092915050565b600060208201905081810360008301526114c68184611473565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114fe826114d3565b9050919050565b61150e816114f3565b811461151957600080fd5b50565b60008135905061152b81611505565b92915050565b6000819050919050565b61154481611531565b811461154f57600080fd5b50565b6000813590506115618161153b565b92915050565b6000806040838503121561157e5761157d6114ce565b5b600061158c8582860161151c565b925050602061159d85828601611552565b9150509250929050565b60008115159050919050565b6115bc816115a7565b82525050565b60006020820190506115d760008301846115b3565b92915050565b6000602082840312156115f3576115f26114ce565b5b60006116018482850161151c565b91505092915050565b61161381611531565b82525050565b600060208201905061162e600083018461160a565b92915050565b60008060006060848603121561164d5761164c6114ce565b5b600061165b8682870161151c565b935050602061166c8682870161151c565b925050604061167d86828701611552565b9150509250925092565b600060ff82169050919050565b61169d81611687565b82525050565b60006020820190506116b86000830184611694565b92915050565b6000602082840312156116d4576116d36114ce565b5b60006116e284828501611552565b91505092915050565b6116f4816114f3565b82525050565b600060208201905061170f60008301846116eb565b92915050565b6000806040838503121561172c5761172b6114ce565b5b600061173a8582860161151c565b925050602061174b8582860161151c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061179c57607f821691505b6020821081036117af576117ae611755565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117ef82611531565b91506117fa83611531565b9250828201905080821115611812576118116117b5565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611874602583611427565b915061187f82611818565b604082019050919050565b600060208201905081810360008301526118a381611867565b9050919050565b7f496e76616c6964206c697175696469747920706f6f6c20616464726573730000600082015250565b60006118e0601e83611427565b91506118eb826118aa565b602082019050919050565b6000602082019050818103600083015261190f816118d3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611972602683611427565b915061197d82611916565b604082019050919050565b600060208201905081810360008301526119a181611965565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a04602483611427565b9150611a0f826119a8565b604082019050919050565b60006020820190508181036000830152611a33816119f7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a96602283611427565b9150611aa182611a3a565b604082019050919050565b60006020820190508181036000830152611ac581611a89565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b02601d83611427565b9150611b0d82611acc565b602082019050919050565b60006020820190508181036000830152611b3181611af5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b94602583611427565b9150611b9f82611b38565b604082019050919050565b60006020820190508181036000830152611bc381611b87565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c26602383611427565b9150611c3182611bca565b604082019050919050565b60006020820190508181036000830152611c5581611c19565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611cb8602683611427565b9150611cc382611c5c565b604082019050919050565b60006020820190508181036000830152611ce781611cab565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d4a602183611427565b9150611d5582611cee565b604082019050919050565b60006020820190508181036000830152611d7981611d3d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ddc602283611427565b9150611de782611d80565b604082019050919050565b60006020820190508181036000830152611e0b81611dcf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e48602083611427565b9150611e5382611e12565b602082019050919050565b60006020820190508181036000830152611e7781611e3b565b9050919050565b6000611e8982611531565b9150611e9483611531565b9250828202611ea281611531565b91508282048414831517611eb957611eb86117b5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611efa82611531565b9150611f0583611531565b925082611f1557611f14611ec0565b5b828204905092915050565b6000611f2b82611531565b9150611f3683611531565b9250828203905081811115611f4e57611f4d6117b5565b5b9291505056fea2646970667358221220832920b18d554d4b175e2e3ebbf2996431e3c439719e27d8b08d4376ff53229e64736f6c63430008120033000000000000000000000000520813444e785d47ca66c2db97a2b653955bfda8000000000000000000000000a89825378a05ffda680ff02d3e7f812a94d2175d
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c806379cc6790116100b8578063a9059cbb1161007c578063a9059cbb14610352578063ae22107f14610382578063c75748391461039e578063dd62ed3e146103bc578063ee6a934c146103ec578063f2fde38b1461040857610137565b806379cc6790146102ac5780637b208769146102c85780638da5cb5b146102e657806395d89b4114610304578063a457c2d71461032257610137565b8063313ce567116100ff578063313ce56714610208578063395093511461022657806342966c681461025657806370a0823114610272578063715018a6146102a257610137565b806306fdde031461013c578063095ea7b31461015a5780630b0fd47e1461018a57806318160ddd146101ba57806323b872dd146101d8575b600080fd5b610144610424565b60405161015191906114ac565b60405180910390f35b610174600480360381019061016f9190611567565b6104b6565b60405161018191906115c2565b60405180910390f35b6101a4600480360381019061019f91906115dd565b6104d9565b6040516101b191906115c2565b60405180910390f35b6101c26104f9565b6040516101cf9190611619565b60405180910390f35b6101f260048036038101906101ed9190611634565b610503565b6040516101ff91906115c2565b60405180910390f35b610210610532565b60405161021d91906116a3565b60405180910390f35b610240600480360381019061023b9190611567565b61053b565b60405161024d91906115c2565b60405180910390f35b610270600480360381019061026b91906116be565b610572565b005b61028c600480360381019061028791906115dd565b610586565b6040516102999190611619565b60405180910390f35b6102aa6105ce565b005b6102c660048036038101906102c19190611567565b6105e2565b005b6102d0610602565b6040516102dd91906116fa565b60405180910390f35b6102ee610628565b6040516102fb91906116fa565b60405180910390f35b61030c610652565b60405161031991906114ac565b60405180910390f35b61033c60048036038101906103379190611567565b6106e4565b60405161034991906115c2565b60405180910390f35b61036c60048036038101906103679190611567565b61075b565b60405161037991906115c2565b60405180910390f35b61039c600480360381019061039791906115dd565b61077e565b005b6103a6610850565b6040516103b391906116fa565b60405180910390f35b6103d660048036038101906103d19190611715565b610876565b6040516103e39190611619565b60405180910390f35b610406600480360381019061040191906115dd565b6108fd565b005b610422600480360381019061041d91906115dd565b6109cf565b005b60606003805461043390611784565b80601f016020809104026020016040519081016040528092919081815260200182805461045f90611784565b80156104ac5780601f10610481576101008083540402835291602001916104ac565b820191906000526020600020905b81548152906001019060200180831161048f57829003601f168201915b5050505050905090565b6000806104c1610a57565b90506104ce818585610a5f565b600191505092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b60008061050e610a57565b905061051b858285610c28565b610526858585610cb4565b60019150509392505050565b60006012905090565b600080610546610a57565b90506105678185856105588589610876565b61056291906117e4565b610a5f565b600191505092915050565b61058361057d610a57565b82610f2a565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105d66110f7565b6105e06000611175565b565b6105f4826105ee610a57565b83610c28565b6105fe8282610f2a565b5050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461066190611784565b80601f016020809104026020016040519081016040528092919081815260200182805461068d90611784565b80156106da5780601f106106af576101008083540402835291602001916106da565b820191906000526020600020905b8154815290600101906020018083116106bd57829003601f168201915b5050505050905090565b6000806106ef610a57565b905060006106fd8286610876565b905083811015610742576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107399061188a565b60405180910390fd5b61074f8286868403610a5f565b60019250505092915050565b600080610766610a57565b9050610773818585610cb4565b600191505092915050565b6107866110f7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec906118f6565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109056110f7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b906118f6565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6109d76110f7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d90611988565b60405180910390fd5b610a4f81611175565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac590611a1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490611aac565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c1b9190611619565b60405180910390a3505050565b6000610c348484610876565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cae5781811015610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790611b18565b60405180910390fd5b610cad8484848403610a5f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a90611baa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990611c3c565b60405180910390fd5b610d9d83838361123b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90611cce565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f119190611619565b60405180910390a3610f24848484611417565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090611d60565b60405180910390fd5b610fa58260008361123b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290611df2565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110de9190611619565b60405180910390a36110f283600084611417565b505050565b6110ff610a57565b73ffffffffffffffffffffffffffffffffffffffff1661111d610628565b73ffffffffffffffffffffffffffffffffffffffff1614611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90611e5e565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156112e25750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561133c5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561140757600060646006836113529190611e7e565b61135c9190611eef565b9050600060038261136d9190611eef565b90506000828461137d9190611f20565b90506113898683610f2a565b6113b686600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610cb4565b60008260026113c59190611e7e565b846113d09190611f20565b90506113ff87600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610cb4565b819450505050505b611412838383610a52565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561145657808201518184015260208101905061143b565b60008484015250505050565b6000601f19601f8301169050919050565b600061147e8261141c565b6114888185611427565b9350611498818560208601611438565b6114a181611462565b840191505092915050565b600060208201905081810360008301526114c68184611473565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114fe826114d3565b9050919050565b61150e816114f3565b811461151957600080fd5b50565b60008135905061152b81611505565b92915050565b6000819050919050565b61154481611531565b811461154f57600080fd5b50565b6000813590506115618161153b565b92915050565b6000806040838503121561157e5761157d6114ce565b5b600061158c8582860161151c565b925050602061159d85828601611552565b9150509250929050565b60008115159050919050565b6115bc816115a7565b82525050565b60006020820190506115d760008301846115b3565b92915050565b6000602082840312156115f3576115f26114ce565b5b60006116018482850161151c565b91505092915050565b61161381611531565b82525050565b600060208201905061162e600083018461160a565b92915050565b60008060006060848603121561164d5761164c6114ce565b5b600061165b8682870161151c565b935050602061166c8682870161151c565b925050604061167d86828701611552565b9150509250925092565b600060ff82169050919050565b61169d81611687565b82525050565b60006020820190506116b86000830184611694565b92915050565b6000602082840312156116d4576116d36114ce565b5b60006116e284828501611552565b91505092915050565b6116f4816114f3565b82525050565b600060208201905061170f60008301846116eb565b92915050565b6000806040838503121561172c5761172b6114ce565b5b600061173a8582860161151c565b925050602061174b8582860161151c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061179c57607f821691505b6020821081036117af576117ae611755565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117ef82611531565b91506117fa83611531565b9250828201905080821115611812576118116117b5565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611874602583611427565b915061187f82611818565b604082019050919050565b600060208201905081810360008301526118a381611867565b9050919050565b7f496e76616c6964206c697175696469747920706f6f6c20616464726573730000600082015250565b60006118e0601e83611427565b91506118eb826118aa565b602082019050919050565b6000602082019050818103600083015261190f816118d3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611972602683611427565b915061197d82611916565b604082019050919050565b600060208201905081810360008301526119a181611965565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a04602483611427565b9150611a0f826119a8565b604082019050919050565b60006020820190508181036000830152611a33816119f7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a96602283611427565b9150611aa182611a3a565b604082019050919050565b60006020820190508181036000830152611ac581611a89565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b02601d83611427565b9150611b0d82611acc565b602082019050919050565b60006020820190508181036000830152611b3181611af5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b94602583611427565b9150611b9f82611b38565b604082019050919050565b60006020820190508181036000830152611bc381611b87565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c26602383611427565b9150611c3182611bca565b604082019050919050565b60006020820190508181036000830152611c5581611c19565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611cb8602683611427565b9150611cc382611c5c565b604082019050919050565b60006020820190508181036000830152611ce781611cab565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d4a602183611427565b9150611d5582611cee565b604082019050919050565b60006020820190508181036000830152611d7981611d3d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ddc602283611427565b9150611de782611d80565b604082019050919050565b60006020820190508181036000830152611e0b81611dcf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e48602083611427565b9150611e5382611e12565b602082019050919050565b60006020820190508181036000830152611e7781611e3b565b9050919050565b6000611e8982611531565b9150611e9483611531565b9250828202611ea281611531565b91508282048414831517611eb957611eb86117b5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611efa82611531565b9150611f0583611531565b925082611f1557611f14611ec0565b5b828204905092915050565b6000611f2b82611531565b9150611f3683611531565b9250828203905081811115611f4e57611f4d6117b5565b5b9291505056fea2646970667358221220832920b18d554d4b175e2e3ebbf2996431e3c439719e27d8b08d4376ff53229e64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000520813444e785d47ca66c2db97a2b653955bfda8000000000000000000000000a89825378a05ffda680ff02d3e7f812a94d2175d
-----Decoded View---------------
Arg [0] : _charityWallet (address): 0x520813444E785d47Ca66c2Db97a2b653955bfda8
Arg [1] : _communityWallet (address): 0xa89825378a05ffDa680ff02D3E7F812a94d2175d
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000520813444e785d47ca66c2db97a2b653955bfda8
Arg [1] : 000000000000000000000000a89825378a05ffda680ff02d3e7f812a94d2175d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.