ETH Price: $2,880.36 (-9.01%)
Gas: 17 Gwei

Contract

0xdf09a216Fac5ADC3e640Db418C0b956076509503
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Poken (PKN) (@$0.0004)

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Value
0x310f34988ab93c59f09b3fcf30f90778e1e35db5746c5b3d60a620e888c6090b Approve(pending)2024-06-30 2:54:055 days ago1719716045IN
Poken: PKN Token
0 ETH(Pending)(Pending)
Approve202317822024-07-04 7:53:2324 hrs ago1720079603IN
Poken: PKN Token
0 ETH0.000189494.0950859
Transfer202223762024-07-03 0:22:472 days ago1719966167IN
Poken: PKN Token
0 ETH0.000428545.50257408
Transfer202065962024-06-30 19:29:114 days ago1719775751IN
Poken: PKN Token
0 ETH0.000237013.61278579
Transfer202065852024-06-30 19:26:594 days ago1719775619IN
Poken: PKN Token
0 ETH0.000436585.6031983
Approve201900742024-06-28 12:06:116 days ago1719576371IN
Poken: PKN Token
0 ETH0.000088043.62120129
Transfer201697082024-06-25 15:51:359 days ago1719330695IN
Poken: PKN Token
0 ETH0.000659448.46607386
Approve201687702024-06-25 12:43:239 days ago1719319403IN
Poken: PKN Token
0 ETH0.000166485.65547525
Approve201432672024-06-21 23:06:5913 days ago1719011219IN
Poken: PKN Token
0 ETH0.00013852.97621701
Transfer201042042024-06-16 11:58:2318 days ago1718539103IN
Poken: PKN Token
0 ETH0.000207523.41298699
Transfer201041972024-06-16 11:56:5918 days ago1718539019IN
Poken: PKN Token
0 ETH0.000323273.90935242
Transfer200924552024-06-14 20:32:2320 days ago1718397143IN
Poken: PKN Token
0 ETH0.0007175511.80322895
Transfer200924442024-06-14 20:30:1120 days ago1718397011IN
Poken: PKN Token
0 ETH0.0012884516.54140834
Approve200884732024-06-14 7:12:1121 days ago1718349131IN
Poken: PKN Token
0 ETH0.000327427.03569483
Transfer200652782024-06-11 1:22:5924 days ago1718068979IN
Poken: PKN Token
0 ETH0.000248634.0882619
Approve200628282024-06-10 17:09:3524 days ago1718039375IN
Poken: PKN Token
0 ETH0.0007825216.88881406
Approve200589692024-06-10 4:13:3525 days ago1717992815IN
Poken: PKN Token
0 ETH0.000151693.25955584
Transfer200584912024-06-10 2:37:1125 days ago1717987031IN
Poken: PKN Token
0 ETH0.00026853.44711828
Transfer200390902024-06-07 9:34:5927 days ago1717752899IN
Poken: PKN Token
0 ETH0.0007634112.55266502
Approve200356492024-06-06 22:04:1128 days ago1717711451IN
Poken: PKN Token
0 ETH0.0006871414.76528553
Approve200318332024-06-06 9:16:3528 days ago1717665395IN
Poken: PKN Token
0 ETH0.0009618920.66904911
Approve200137212024-06-03 20:36:5931 days ago1717447019IN
Poken: PKN Token
0 ETH0.0002498210.29517077
Transfer200133442024-06-03 19:20:4731 days ago1717442447IN
Poken: PKN Token
0 ETH0.000768239.86274202
Transfer200122152024-06-03 15:33:2331 days ago1717428803IN
Poken: PKN Token
0 ETH0.001402518
Transfer200090752024-06-03 5:01:4732 days ago1717390907IN
Poken: PKN Token
0 ETH0.00067038.10361154
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Poken

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : pokenToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.3;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";

abstract contract ReducingTaxToken is ERC20Burnable, Ownable {

    uint256 burnRateBIPS;
    address public charityAccount;
    address public burnAccount = 0x000000000000000000000000000000000000dEaD;

    mapping (address => bool) public isExemptFromFee;

    constructor(uint256 _initialBurnRateBIPS, address _charityAccount) {
        burnRateBIPS = _initialBurnRateBIPS;
        charityAccount = _charityAccount;
        isExemptFromFee[owner()] = true;
    }

    function calculateBurnFee(uint256 amount) public view returns (uint256) {
        return (amount*burnRateBIPS)/10000;
    }

    function calculateCharityFee(uint256 amount) public pure returns (uint256) {
        return amount/100;
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        uint256 burnFee;
        uint256 charityFee;
        
        if(!isExemptFromFee[_msgSender()]) {
            burnFee = calculateBurnFee(amount);
            charityFee = calculateCharityFee(amount);
            _transfer(_msgSender(), burnAccount, burnFee);
            _transfer(_msgSender(), charityAccount, charityFee);
        }
        _transfer(_msgSender(), recipient, amount - burnFee - charityFee);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        uint256 burnFee;
        uint256 charityFee;
        if(!isExemptFromFee[sender]) {
            burnFee = calculateBurnFee(amount);
            charityFee = calculateCharityFee(amount);
            _transfer(sender, burnAccount, burnFee);
            _transfer(sender, charityAccount, charityFee);
        }
        _transfer(sender, recipient, amount - burnFee - charityFee);

        uint256 currentAllowance = allowance(sender, _msgSender());
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    function setburnRateBIPS(uint256 _newburnRateBIPS) external onlyOwner {
        require(_newburnRateBIPS <= 100, "RTT: Burn rate too high");
        burnRateBIPS = _newburnRateBIPS;
    }

    function addFeeExemption(address user) external onlyOwner {
        isExemptFromFee[user] = true;
    }

    function removeFeeExemption(address user) external onlyOwner {
        isExemptFromFee[user] = false;
    }

    function updateChairityAccount(address _newChairityAccount) external onlyOwner {
        charityAccount = _newChairityAccount;
    }   
}

abstract contract AntiWhaleToken is ReducingTaxToken {

    uint256 public maxTxAmount;
    uint256 public hotlistTxAmount;
    uint256 public cooldownPeriod;

    mapping (address => bool) public isExemptFromTxLimit;
    mapping (address => uint) public lastHotTxTime;

    constructor(uint256 _maxTxAmount, uint256 _hotlistTxAmount, uint256 _cooldownPeriod) {
        maxTxAmount = _maxTxAmount;
        hotlistTxAmount = _hotlistTxAmount;
        cooldownPeriod = _cooldownPeriod;

        isExemptFromTxLimit[address(0)] = true;
        isExemptFromTxLimit[owner()] = true;
    }

    function _checkAndUpdateLimits(address from, uint256 amount) internal {
        require (isExemptFromTxLimit[from]
                || amount <= maxTxAmount,
                "AWT: Exceeds max tx amount");
        if (!isExemptFromTxLimit[from] && amount > hotlistTxAmount) {
            require (block.timestamp >= lastHotTxTime[from] + cooldownPeriod, "AWT: Sender must wait for cooldown");
            lastHotTxTime[from] = block.timestamp;
        }
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _checkAndUpdateLimits(_msgSender(), amount);
        return super.transfer(recipient, amount);
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _checkAndUpdateLimits(sender, amount);
        return super.transferFrom(sender, recipient, amount);
    }

    function addTxLimitExemption(address user) external onlyOwner {
        isExemptFromTxLimit[user] = true;
    }

    function removeTxLimitExemption(address user) external onlyOwner {
        isExemptFromTxLimit[user] = false;
    }

    function updateMaxTxAmount(uint256 percentBIPS) external onlyOwner {
        require (percentBIPS >= 20 && percentBIPS <= 100, "AWT: MaxTxAmount out of range");
        maxTxAmount = (totalSupply() * percentBIPS) / 10000;
    }

    function updateHotlistTxAmount(uint256 percentBIPS) external onlyOwner {
        require (percentBIPS >= 10 && percentBIPS <= 50, "AWT: HotlistTxAmount out of range");
        hotlistTxAmount = (totalSupply() * percentBIPS) / 10000;
    }

    function updateCooldownPeriod(uint256 timeInHours) external onlyOwner {
        require (timeInHours >= 2 && timeInHours <= 24, "AWT: CooldownPeriod out of range");
        cooldownPeriod = timeInHours * 1 hours;
    }

    function canSend(address _address) external view returns (bool) {
        return isExemptFromTxLimit[_address] || block.timestamp >= lastHotTxTime[_address] + cooldownPeriod;
    }
}

contract Poken is AntiWhaleToken {

    uint256 initialSupply = 5000000000 * 10**18;

    constructor(address _charityWallet)
        ERC20("Poken", "PKN") 
        ReducingTaxToken(100, _charityWallet)
        AntiWhaleToken(
            (initialSupply * 50) / 10000,
            (initialSupply * 25) / 10000,
            3 hours)
    {
        _mint(owner(), initialSupply);
    }

    function decimals() public pure override returns (uint8) {
        return 18;
    }
}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 3 of 7 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT

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 {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }
}

File 4 of 7 : Context.sol
// SPDX-License-Identifier: MIT

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 5 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT

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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, 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:
     *
     * - `to` 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;
        _balances[account] += amount;
        emit Transfer(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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(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 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 to 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 { }
}

File 6 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @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);
}

File 7 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_charityWallet","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":"user","type":"address"}],"name":"addFeeExemption","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"addTxLimitExemption","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":[],"name":"burnAccount","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"calculateBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"calculateCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"canSend","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityAccount","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cooldownPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":[],"name":"hotlistTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"isExemptFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExemptFromTxLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastHotTxTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"removeFeeExemption","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"removeTxLimitExemption","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newburnRateBIPS","type":"uint256"}],"name":"setburnRateBIPS","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"},{"inputs":[{"internalType":"address","name":"_newChairityAccount","type":"address"}],"name":"updateChairityAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timeInHours","type":"uint256"}],"name":"updateCooldownPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentBIPS","type":"uint256"}],"name":"updateHotlistTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentBIPS","type":"uint256"}],"name":"updateMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600880546001600160a01b03191661dead1790556b1027e72f1f12813088000000600f553480156200003557600080fd5b5060405162001bf238038062001bf2833981016040819052620000589162000410565b612710600f5460326200006c91906200047c565b6200007891906200045b565b612710600f5460196200008c91906200047c565b6200009891906200045b565b612a30606484604051806040016040528060058152602001642837b5b2b760d91b815250604051806040016040528060038152602001622825a760e91b8152508160039080519060200190620000f09291906200036a565b508051620001069060049060208401906200036a565b50505060006200011b6200027e60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506006829055600780546001600160a01b0319166001600160a01b038316179055600160096000620001a26005546001600160a01b031690565b6001600160a01b031681526020808201929092526040016000908120805493151560ff19948516179055600a889055600b879055600c869055808052600d918290527f81955a0a11e65eac625c29e8882660bae4e165a75d72780094acae8ece9a29ee8054909316600190811790935591935091506200022a6005546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055506200027791506200026e90506005546001600160a01b031690565b600f5462000282565b50620004f1565b3390565b6001600160a01b038216620002dd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002f1919062000440565b90915550506001600160a01b038216600090815260208190526040812080548392906200032090849062000440565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b82805462000378906200049e565b90600052602060002090601f0160209004810192826200039c5760008555620003e7565b82601f10620003b757805160ff1916838001178555620003e7565b82800160010185558215620003e7579182015b82811115620003e7578251825591602001919060010190620003ca565b50620003f5929150620003f9565b5090565b5b80821115620003f55760008155600101620003fa565b60006020828403121562000422578081fd5b81516001600160a01b038116811462000439578182fd5b9392505050565b60008219821115620004565762000456620004db565b500190565b6000826200047757634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615620004995762000499620004db565b500290565b600181811c90821680620004b357607f821691505b60208210811415620004d557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6116f180620005016000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c80635d037aa7116101255780638da5cb5b116100ad578063c899b8261161007c578063c899b826146104ab578063dd62ed3e146104be578063e6ac5baf146104f7578063f2fde38b1461050a578063f5e1a4571461051d5761021c565b80638da5cb5b1461046c57806395d89b411461047d578063a457c2d714610485578063a9059cbb146104985761021c565b8063715018a6116100f4578063715018a61461042257806377ef3b0e1461042a57806379cc67901461043d578063861f6bfd146104505780638c0b5e22146104635761021c565b80635d037aa7146103ca5780636256d181146103d35780636ad88269146103e657806370a08231146103f95761021c565b80632bc06a92116101a8578063360507b611610177578063360507b61461035b57806338cdf5441461036e57806339509351146103915780633991f124146103a457806342966c68146103b75761021c565b80632bc06a92146102fb578063313ce5671461030e578063327b32b81461031d57806333e5cee0146103485761021c565b806306fdde03116101ef57806306fdde03146102a5578063095ea7b3146102ba5780630b2d25ca146102cd57806318160ddd146102e057806323b872dd146102e85761021c565b80630184a8c314610221578063028e7a9c1461025957806303da835a1461028757806304646a491461029c575b600080fd5b61024461022f3660046114ac565b60096020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b6102796102673660046114ac565b600e6020526000908152604090205481565b604051908152602001610250565b61029a61029536600461155c565b610530565b005b610279600c5481565b6102ad6105f2565b6040516102509190611574565b6102446102c8366004611533565b610684565b6102796102db36600461155c565b61069a565b600254610279565b6102446102f63660046114f8565b6106af565b6102446103093660046114ac565b6106ce565b60405160128152602001610250565b600854610330906001600160a01b031681565b6040516001600160a01b039091168152602001610250565b61029a6103563660046114ac565b61071f565b61029a6103693660046114ac565b61076a565b61024461037c3660046114ac565b600d6020526000908152604090205460ff1681565b61024461039f366004611533565b6107b5565b61029a6103b23660046114ac565b6107f1565b61029a6103c536600461155c565b61083d565b610279600b5481565b61029a6103e136600461155c565b61084a565b6102796103f436600461155c565b6108f9565b6102796104073660046114ac565b6001600160a01b031660009081526020819052604090205490565b61029a610916565b61029a6104383660046114ac565b61098a565b61029a61044b366004611533565b6109d8565b61029a61045e36600461155c565b610a60565b610279600a5481565b6005546001600160a01b0316610330565b6102ad610afa565b610244610493366004611533565b610b09565b6102446104a6366004611533565b610ba4565b600754610330906001600160a01b031681565b6102796104cc3660046114c6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61029a61050536600461155c565b610bc1565b61029a6105183660046114ac565b610c41565b61029a61052b3660046114ac565b610d2c565b6005546001600160a01b031633146105635760405162461bcd60e51b815260040161055a906115c7565b60405180910390fd5b600a8110158015610575575060328111155b6105cb5760405162461bcd60e51b815260206004820152602160248201527f4157543a20486f746c6973745478416d6f756e74206f7574206f662072616e676044820152606560f81b606482015260840161055a565b612710816105d860025490565b6105e29190611634565b6105ec9190611614565b600b5550565b6060600380546106019061166a565b80601f016020809104026020016040519081016040528092919081815260200182805461062d9061166a565b801561067a5780601f1061064f5761010080835404028352916020019161067a565b820191906000526020600020905b81548152906001019060200180831161065d57829003601f168201915b5050505050905090565b6000610691338484610d7a565b50600192915050565b60006106a7606483611614565b90505b919050565b60006106bb8483610e9f565b6106c6848484610fe3565b949350505050565b6001600160a01b0381166000908152600d602052604081205460ff16806106a75750600c546001600160a01b0383166000908152600e602052604090205461071691906115fc565b42101592915050565b6005546001600160a01b031633146107495760405162461bcd60e51b815260040161055a906115c7565b6001600160a01b03166000908152600d60205260409020805460ff19169055565b6005546001600160a01b031633146107945760405162461bcd60e51b815260040161055a906115c7565b6001600160a01b03166000908152600960205260409020805460ff19169055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106919185906107ec9086906115fc565b610d7a565b6005546001600160a01b0316331461081b5760405162461bcd60e51b815260040161055a906115c7565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b61084733826110f6565b50565b6005546001600160a01b031633146108745760405162461bcd60e51b815260040161055a906115c7565b60148110158015610886575060648111155b6108d25760405162461bcd60e51b815260206004820152601d60248201527f4157543a204d61785478416d6f756e74206f7574206f662072616e6765000000604482015260640161055a565b612710816108df60025490565b6108e99190611634565b6108f39190611614565b600a5550565b60006127106006548361090c9190611634565b6106a79190611614565b6005546001600160a01b031633146109405760405162461bcd60e51b815260040161055a906115c7565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146109b45760405162461bcd60e51b815260040161055a906115c7565b6001600160a01b03166000908152600d60205260409020805460ff19166001179055565b60006109e483336104cc565b905081811015610a425760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b606482015260840161055a565b610a5183336107ec8585611653565b610a5b83836110f6565b505050565b6005546001600160a01b03163314610a8a5760405162461bcd60e51b815260040161055a906115c7565b60028110158015610a9c575060188111155b610ae85760405162461bcd60e51b815260206004820181905260248201527f4157543a20436f6f6c646f776e506572696f64206f7574206f662072616e6765604482015260640161055a565b610af481610e10611634565b600c5550565b6060600480546106019061166a565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b8b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161055a565b610b9a33856107ec8685611653565b5060019392505050565b6000610bb03383610e9f565b610bba8383611245565b9392505050565b6005546001600160a01b03163314610beb5760405162461bcd60e51b815260040161055a906115c7565b6064811115610c3c5760405162461bcd60e51b815260206004820152601760248201527f5254543a204275726e207261746520746f6f2068696768000000000000000000604482015260640161055a565b600655565b6005546001600160a01b03163314610c6b5760405162461bcd60e51b815260040161055a906115c7565b6001600160a01b038116610cd05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161055a565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610d565760405162461bcd60e51b815260040161055a906115c7565b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b6001600160a01b038316610ddc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161055a565b6001600160a01b038216610e3d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161055a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0382166000908152600d602052604090205460ff1680610ec85750600a548111155b610f145760405162461bcd60e51b815260206004820152601a60248201527f4157543a2045786365656473206d617820747820616d6f756e74000000000000604482015260640161055a565b6001600160a01b0382166000908152600d602052604090205460ff16158015610f3e5750600b5481115b15610fdf57600c546001600160a01b0383166000908152600e6020526040902054610f6991906115fc565b421015610fc35760405162461bcd60e51b815260206004820152602260248201527f4157543a2053656e646572206d757374207761697420666f7220636f6f6c646f6044820152613bb760f11b606482015260840161055a565b6001600160a01b0382166000908152600e602052604090204290555b5050565b6001600160a01b0383166000908152600960205260408120548190819060ff1661104e57611010846108f9565b915061101b8461069a565b6008549091506110369087906001600160a01b0316846112bd565b60075461104e9087906001600160a01b0316836112bd565b61106d86868361105e8689611653565b6110689190611653565b6112bd565b600061107987336104cc565b9050848110156110dc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161055a565b6110e98733878403610d7a565b5060019695505050505050565b6001600160a01b0382166111565760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161055a565b6001600160a01b038216600090815260208190526040902054818110156111ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161055a565b6111d48282611653565b6001600160a01b03841660009081526020819052604081209190915560028054849290611202908490611653565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610e92565b336000908152600960205260408120548190819060ff166112a257611269846108f9565b91506112748461069a565b905061128c336008546001600160a01b0316846112bd565b6112a2336007546001600160a01b0316836112bd565b6112b233868361105e8689611653565b506001949350505050565b6001600160a01b0383166113215760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161055a565b6001600160a01b0382166113835760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161055a565b6001600160a01b038316600090815260208190526040902054818110156113fb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161055a565b6114058282611653565b6001600160a01b03808616600090815260208190526040808220939093559085168152908120805484929061143b9084906115fc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161148791815260200190565b60405180910390a350505050565b80356001600160a01b03811681146106aa57600080fd5b6000602082840312156114bd578081fd5b610bba82611495565b600080604083850312156114d8578081fd5b6114e183611495565b91506114ef60208401611495565b90509250929050565b60008060006060848603121561150c578081fd5b61151584611495565b925061152360208501611495565b9150604084013590509250925092565b60008060408385031215611545578182fd5b61154e83611495565b946020939093013593505050565b60006020828403121561156d578081fd5b5035919050565b6000602080835283518082850152825b818110156115a057858101830151858201604001528201611584565b818111156115b15783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561160f5761160f6116a5565b500190565b60008261162f57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561164e5761164e6116a5565b500290565b600082821015611665576116656116a5565b500390565b600181811c9082168061167e57607f821691505b6020821081141561169f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220f3f9b32e871c812a618b52e70c166b96b0ad6555eb258feed5f76105c329f4c564736f6c63430008030033000000000000000000000000a22d224bfcbbb2ad6714c2b5febbfe638fbc9627

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021c5760003560e01c80635d037aa7116101255780638da5cb5b116100ad578063c899b8261161007c578063c899b826146104ab578063dd62ed3e146104be578063e6ac5baf146104f7578063f2fde38b1461050a578063f5e1a4571461051d5761021c565b80638da5cb5b1461046c57806395d89b411461047d578063a457c2d714610485578063a9059cbb146104985761021c565b8063715018a6116100f4578063715018a61461042257806377ef3b0e1461042a57806379cc67901461043d578063861f6bfd146104505780638c0b5e22146104635761021c565b80635d037aa7146103ca5780636256d181146103d35780636ad88269146103e657806370a08231146103f95761021c565b80632bc06a92116101a8578063360507b611610177578063360507b61461035b57806338cdf5441461036e57806339509351146103915780633991f124146103a457806342966c68146103b75761021c565b80632bc06a92146102fb578063313ce5671461030e578063327b32b81461031d57806333e5cee0146103485761021c565b806306fdde03116101ef57806306fdde03146102a5578063095ea7b3146102ba5780630b2d25ca146102cd57806318160ddd146102e057806323b872dd146102e85761021c565b80630184a8c314610221578063028e7a9c1461025957806303da835a1461028757806304646a491461029c575b600080fd5b61024461022f3660046114ac565b60096020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b6102796102673660046114ac565b600e6020526000908152604090205481565b604051908152602001610250565b61029a61029536600461155c565b610530565b005b610279600c5481565b6102ad6105f2565b6040516102509190611574565b6102446102c8366004611533565b610684565b6102796102db36600461155c565b61069a565b600254610279565b6102446102f63660046114f8565b6106af565b6102446103093660046114ac565b6106ce565b60405160128152602001610250565b600854610330906001600160a01b031681565b6040516001600160a01b039091168152602001610250565b61029a6103563660046114ac565b61071f565b61029a6103693660046114ac565b61076a565b61024461037c3660046114ac565b600d6020526000908152604090205460ff1681565b61024461039f366004611533565b6107b5565b61029a6103b23660046114ac565b6107f1565b61029a6103c536600461155c565b61083d565b610279600b5481565b61029a6103e136600461155c565b61084a565b6102796103f436600461155c565b6108f9565b6102796104073660046114ac565b6001600160a01b031660009081526020819052604090205490565b61029a610916565b61029a6104383660046114ac565b61098a565b61029a61044b366004611533565b6109d8565b61029a61045e36600461155c565b610a60565b610279600a5481565b6005546001600160a01b0316610330565b6102ad610afa565b610244610493366004611533565b610b09565b6102446104a6366004611533565b610ba4565b600754610330906001600160a01b031681565b6102796104cc3660046114c6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61029a61050536600461155c565b610bc1565b61029a6105183660046114ac565b610c41565b61029a61052b3660046114ac565b610d2c565b6005546001600160a01b031633146105635760405162461bcd60e51b815260040161055a906115c7565b60405180910390fd5b600a8110158015610575575060328111155b6105cb5760405162461bcd60e51b815260206004820152602160248201527f4157543a20486f746c6973745478416d6f756e74206f7574206f662072616e676044820152606560f81b606482015260840161055a565b612710816105d860025490565b6105e29190611634565b6105ec9190611614565b600b5550565b6060600380546106019061166a565b80601f016020809104026020016040519081016040528092919081815260200182805461062d9061166a565b801561067a5780601f1061064f5761010080835404028352916020019161067a565b820191906000526020600020905b81548152906001019060200180831161065d57829003601f168201915b5050505050905090565b6000610691338484610d7a565b50600192915050565b60006106a7606483611614565b90505b919050565b60006106bb8483610e9f565b6106c6848484610fe3565b949350505050565b6001600160a01b0381166000908152600d602052604081205460ff16806106a75750600c546001600160a01b0383166000908152600e602052604090205461071691906115fc565b42101592915050565b6005546001600160a01b031633146107495760405162461bcd60e51b815260040161055a906115c7565b6001600160a01b03166000908152600d60205260409020805460ff19169055565b6005546001600160a01b031633146107945760405162461bcd60e51b815260040161055a906115c7565b6001600160a01b03166000908152600960205260409020805460ff19169055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106919185906107ec9086906115fc565b610d7a565b6005546001600160a01b0316331461081b5760405162461bcd60e51b815260040161055a906115c7565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b61084733826110f6565b50565b6005546001600160a01b031633146108745760405162461bcd60e51b815260040161055a906115c7565b60148110158015610886575060648111155b6108d25760405162461bcd60e51b815260206004820152601d60248201527f4157543a204d61785478416d6f756e74206f7574206f662072616e6765000000604482015260640161055a565b612710816108df60025490565b6108e99190611634565b6108f39190611614565b600a5550565b60006127106006548361090c9190611634565b6106a79190611614565b6005546001600160a01b031633146109405760405162461bcd60e51b815260040161055a906115c7565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146109b45760405162461bcd60e51b815260040161055a906115c7565b6001600160a01b03166000908152600d60205260409020805460ff19166001179055565b60006109e483336104cc565b905081811015610a425760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b606482015260840161055a565b610a5183336107ec8585611653565b610a5b83836110f6565b505050565b6005546001600160a01b03163314610a8a5760405162461bcd60e51b815260040161055a906115c7565b60028110158015610a9c575060188111155b610ae85760405162461bcd60e51b815260206004820181905260248201527f4157543a20436f6f6c646f776e506572696f64206f7574206f662072616e6765604482015260640161055a565b610af481610e10611634565b600c5550565b6060600480546106019061166a565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b8b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161055a565b610b9a33856107ec8685611653565b5060019392505050565b6000610bb03383610e9f565b610bba8383611245565b9392505050565b6005546001600160a01b03163314610beb5760405162461bcd60e51b815260040161055a906115c7565b6064811115610c3c5760405162461bcd60e51b815260206004820152601760248201527f5254543a204275726e207261746520746f6f2068696768000000000000000000604482015260640161055a565b600655565b6005546001600160a01b03163314610c6b5760405162461bcd60e51b815260040161055a906115c7565b6001600160a01b038116610cd05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161055a565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610d565760405162461bcd60e51b815260040161055a906115c7565b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b6001600160a01b038316610ddc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161055a565b6001600160a01b038216610e3d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161055a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0382166000908152600d602052604090205460ff1680610ec85750600a548111155b610f145760405162461bcd60e51b815260206004820152601a60248201527f4157543a2045786365656473206d617820747820616d6f756e74000000000000604482015260640161055a565b6001600160a01b0382166000908152600d602052604090205460ff16158015610f3e5750600b5481115b15610fdf57600c546001600160a01b0383166000908152600e6020526040902054610f6991906115fc565b421015610fc35760405162461bcd60e51b815260206004820152602260248201527f4157543a2053656e646572206d757374207761697420666f7220636f6f6c646f6044820152613bb760f11b606482015260840161055a565b6001600160a01b0382166000908152600e602052604090204290555b5050565b6001600160a01b0383166000908152600960205260408120548190819060ff1661104e57611010846108f9565b915061101b8461069a565b6008549091506110369087906001600160a01b0316846112bd565b60075461104e9087906001600160a01b0316836112bd565b61106d86868361105e8689611653565b6110689190611653565b6112bd565b600061107987336104cc565b9050848110156110dc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161055a565b6110e98733878403610d7a565b5060019695505050505050565b6001600160a01b0382166111565760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161055a565b6001600160a01b038216600090815260208190526040902054818110156111ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161055a565b6111d48282611653565b6001600160a01b03841660009081526020819052604081209190915560028054849290611202908490611653565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610e92565b336000908152600960205260408120548190819060ff166112a257611269846108f9565b91506112748461069a565b905061128c336008546001600160a01b0316846112bd565b6112a2336007546001600160a01b0316836112bd565b6112b233868361105e8689611653565b506001949350505050565b6001600160a01b0383166113215760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161055a565b6001600160a01b0382166113835760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161055a565b6001600160a01b038316600090815260208190526040902054818110156113fb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161055a565b6114058282611653565b6001600160a01b03808616600090815260208190526040808220939093559085168152908120805484929061143b9084906115fc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161148791815260200190565b60405180910390a350505050565b80356001600160a01b03811681146106aa57600080fd5b6000602082840312156114bd578081fd5b610bba82611495565b600080604083850312156114d8578081fd5b6114e183611495565b91506114ef60208401611495565b90509250929050565b60008060006060848603121561150c578081fd5b61151584611495565b925061152360208501611495565b9150604084013590509250925092565b60008060408385031215611545578182fd5b61154e83611495565b946020939093013593505050565b60006020828403121561156d578081fd5b5035919050565b6000602080835283518082850152825b818110156115a057858101830151858201604001528201611584565b818111156115b15783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561160f5761160f6116a5565b500190565b60008261162f57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561164e5761164e6116a5565b500290565b600082821015611665576116656116a5565b500390565b600181811c9082168061167e57607f821691505b6020821081141561169f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220f3f9b32e871c812a618b52e70c166b96b0ad6555eb258feed5f76105c329f4c564736f6c63430008030033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000a22d224bfcbbb2ad6714c2b5febbfe638fbc9627

-----Decoded View---------------
Arg [0] : _charityWallet (address): 0xa22d224bFCBBB2aD6714C2b5feBbfe638fBC9627

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a22d224bfcbbb2ad6714c2b5febbfe638fbc9627


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Pokmi is a blockchain-based decentralized platform driven by a strong community of grown-ups and creativitylovers and powered by POKENs (Blockchain-based Pokmi Tokens).

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.