ETH Price: $3,269.50 (+4.53%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer216946642025-01-24 13:29:116 days ago1737725351IN
0x0463AF01...53D4DD7Ed
0 ETH0.0013735220.79461444
Transfer212218972024-11-19 12:52:1172 days ago1732020731IN
0x0463AF01...53D4DD7Ed
0 ETH0.0009400214.23152564
Transfer210938942024-11-01 16:08:3590 days ago1730477315IN
0x0463AF01...53D4DD7Ed
0 ETH0.0011132422.74157029
Approve209390652024-10-11 1:21:47111 days ago1728609707IN
0x0463AF01...53D4DD7Ed
0 ETH0.000232049.30450192
Transfer206852322024-09-05 15:18:23147 days ago1725549503IN
0x0463AF01...53D4DD7Ed
0 ETH0.0007051710.67604715
Transfer203926842024-07-26 19:02:23187 days ago1722020543IN
0x0463AF01...53D4DD7Ed
0 ETH0.000594469
Transfer201672692024-06-25 7:41:23219 days ago1719301283IN
0x0463AF01...53D4DD7Ed
0 ETH0.000726711
Transfer200819762024-06-13 9:21:47231 days ago1718270507IN
0x0463AF01...53D4DD7Ed
0 ETH0.0007758812.66964722
Transfer200813942024-06-13 7:24:23231 days ago1718263463IN
0x0463AF01...53D4DD7Ed
0 ETH0.0007471911.31215944
Transfer200400022024-06-07 12:38:11237 days ago1717763891IN
0x0463AF01...53D4DD7Ed
0 ETH0.0015196623.00710034
Transfer199556522024-05-26 17:50:11249 days ago1716745811IN
0x0463AF01...53D4DD7Ed
0 ETH0.0008586713
Approve198918582024-05-17 19:45:35257 days ago1715975135IN
0x0463AF01...53D4DD7Ed
0 ETH0.000178793.81332639
Approve197329852024-04-25 14:29:47280 days ago1714055387IN
0x0463AF01...53D4DD7Ed
0 ETH0.0007025114.89553579
Transfer195621122024-04-01 16:17:11304 days ago1711988231IN
0x0463AF01...53D4DD7Ed
0 ETH0.0031361147.47947052
Transfer195166762024-03-26 5:56:11310 days ago1711432571IN
0x0463AF01...53D4DD7Ed
0 ETH0.0015917624.09862208
Transfer194490032024-03-16 17:42:11320 days ago1710610931IN
0x0463AF01...53D4DD7Ed
0 ETH0.0025902839.20877053
Transfer194422822024-03-15 18:59:11320 days ago1710529151IN
0x0463AF01...53D4DD7Ed
0 ETH0.0035040653.05006427
Transfer192642322024-02-19 20:44:11345 days ago1708375451IN
0x0463AF01...53D4DD7Ed
0 ETH0.0036328655
Transfer192638142024-02-19 19:20:11345 days ago1708370411IN
0x0463AF01...53D4DD7Ed
0 ETH0.0032371349
Transfer192607052024-02-19 8:50:11346 days ago1708332611IN
0x0463AF01...53D4DD7Ed
0 ETH0.0025099738
Transfer192407592024-02-16 13:29:11349 days ago1708090151IN
0x0463AF01...53D4DD7Ed
0 ETH0.0031169647.1896191
Transfer192342322024-02-15 15:30:11350 days ago1708011011IN
0x0463AF01...53D4DD7Ed
0 ETH0.0037702277
Transfer192341972024-02-15 15:23:11350 days ago1708010591IN
0x0463AF01...53D4DD7Ed
0 ETH0.005809488
Transfer192341132024-02-15 15:06:11350 days ago1708009571IN
0x0463AF01...53D4DD7Ed
0 ETH0.00752445114
Transfer192201642024-02-13 16:07:11352 days ago1707840431IN
0x0463AF01...53D4DD7Ed
0 ETH0.0026420840
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:
HappyCatToken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : HappyCatToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

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

contract HappyCatToken is ERC20, Ownable{
    address private _vault;
    mapping(address => bool) private _blacklists;
    mapping(address => bool) private _chargelists;
    mapping(address => bool) private _whitelists;

    event BlacklistSet(address account, bool isBlacklist);
    event ChargelistSet(address account, bool isChargelist);

    constructor(address vault_) ERC20("happycat", "happycat") {
        _vault = vault_;
        uint256 supply = 1 * 1e12 * 1e18;
        _mint(owner(), supply);
    }

    function transfer(address to, uint256 amount) public override returns (bool) {
        address owner = _msgSender();
        amount = _transferCharge(owner, to, amount);
        _transfer(owner, to, amount);
        return true;
    }

    function transferFrom(address from, address to, uint256 amount) public override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        amount = _transferCharge(from, to, amount);
        _transfer(from, to, amount);
        return true;
    }

    function _transferCharge(address owner, address to, uint256 amount) internal returns(uint256) {
        require(!blacklistOf(owner) && !blacklistOf(to), "HappyCatToken: blacklist is denied");
        if (!whitelistOf(owner) && !whitelistOf(to)) {
            if (chargelistOf(owner) || chargelistOf(to)) {
                uint256 charge = amount * chargeRate() / 100;
                amount -= charge;
                _transfer(owner, vault(), charge);
            }
        }
        return amount;
    }

    function setBlacklists(address[] memory accounts, bool isBlacklist) external onlyOwner {
        for (uint i = 0; i < accounts.length; i++) {
            address account = accounts[i];
            _blacklists[account] = isBlacklist;
            emit BlacklistSet(account, isBlacklist);
        }
    }

    function setChargelists(address[] memory accounts, bool isChargelist) external onlyOwner {
        for (uint i = 0; i < accounts.length; i++) {
            address account = accounts[i];
            _chargelists[account] = isChargelist;
            emit ChargelistSet(account, isChargelist);
        }
    }

    function setWhitelist(address account, bool isWhitelist) external onlyOwner {
        _whitelists[account] = isWhitelist;
    }


    function blacklistOf(address account) public view returns(bool) {
        return _blacklists[account];
    }

    function chargelistOf(address account) public view returns(bool) {
        return _chargelists[account];
    }

    function whitelistOf(address account) public view returns(bool) {
        return _whitelists[account];
    }

    function chargeRate() public pure returns(uint256) {
        return 1;
    }

    function vault() public view returns(address) {
        return _vault;
    }

}

File 2 of 6 : Ownable.sol
// 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);
    }
}

File 3 of 6 : ERC20.sol
// 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 {}
}

File 4 of 6 : IERC20Metadata.sol
// 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);
}

File 5 of 6 : IERC20.sol
// 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);
}

File 6 of 6 : Context.sol
// 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"vault_","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isBlacklist","type":"bool"}],"name":"BlacklistSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isChargelist","type":"bool"}],"name":"ChargelistSet","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":"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":"address","name":"account","type":"address"}],"name":"blacklistOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chargeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"chargelistOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isBlacklist","type":"bool"}],"name":"setBlacklists","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isChargelist","type":"bool"}],"name":"setChargelists","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isWhitelist","type":"bool"}],"name":"setWhitelist","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"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"whitelistOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620028d2380380620028d283398181016040528101906200003791906200043e565b6040518060400160405280600881526020017f68617070796361740000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f68617070796361740000000000000000000000000000000000000000000000008152508160039081620000b49190620006ea565b508060049081620000c69190620006ea565b505050620000e9620000dd6200016560201b60201c565b6200016d60201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006c0c9f2c9cd04674edea4000000090506200015d620001506200023360201b60201c565b826200025d60201b60201c565b5050620008ec565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c69062000832565b60405180910390fd5b620002e360008383620003ca60201b60201c565b8060026000828254620002f7919062000883565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003aa9190620008cf565b60405180910390a3620003c660008383620003cf60201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200040682620003d9565b9050919050565b6200041881620003f9565b81146200042457600080fd5b50565b60008151905062000438816200040d565b92915050565b600060208284031215620004575762000456620003d4565b5b6000620004678482850162000427565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f257607f821691505b602082108103620005085762000507620004aa565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005727fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000533565b6200057e868362000533565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005cb620005c5620005bf8462000596565b620005a0565b62000596565b9050919050565b6000819050919050565b620005e783620005aa565b620005ff620005f682620005d2565b84845462000540565b825550505050565b600090565b6200061662000607565b62000623818484620005dc565b505050565b5b818110156200064b576200063f6000826200060c565b60018101905062000629565b5050565b601f8211156200069a5762000664816200050e565b6200066f8462000523565b810160208510156200067f578190505b620006976200068e8562000523565b83018262000628565b50505b505050565b600082821c905092915050565b6000620006bf600019846008026200069f565b1980831691505092915050565b6000620006da8383620006ac565b9150826002028217905092915050565b620006f58262000470565b67ffffffffffffffff8111156200071157620007106200047b565b5b6200071d8254620004d9565b6200072a8282856200064f565b600060209050601f8311600181146200076257600084156200074d578287015190505b620007598582620006cc565b865550620007c9565b601f19841662000772866200050e565b60005b828110156200079c5784890151825560018201915060208501945060208101905062000775565b86831015620007bc5784890151620007b8601f891682620006ac565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200081a601f83620007d1565b91506200082782620007e2565b602082019050919050565b600060208201905081810360008301526200084d816200080b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008908262000596565b91506200089d8362000596565b9250828201905080821115620008b857620008b762000854565b5b92915050565b620008c98162000596565b82525050565b6000602082019050620008e66000830184620008be565b92915050565b611fd680620008fc6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806391756d1f116100b8578063b78801581161007c578063b78801581461038d578063dd62ed3e146103bd578063e220b30e146103ed578063f2fde38b1461041d578063fbfa77cf14610439578063fe2da2371461045757610142565b806391756d1f146102c357806395d89b41146102f3578063a457c2d714610311578063a9059cbb14610341578063b4a990cc1461037157610142565b8063395093511161010a578063395093511461020157806353d6fd591461023157806370a082311461024d578063715018a61461027d5780638be311c0146102875780638da5cb5b146102a557610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610473565b60405161015c9190611364565b60405180910390f35b61017f600480360381019061017a919061142e565b610505565b60405161018c9190611489565b60405180910390f35b61019d610528565b6040516101aa91906114b3565b60405180910390f35b6101cd60048036038101906101c891906114ce565b610532565b6040516101da9190611489565b60405180910390f35b6101eb61056e565b6040516101f8919061153d565b60405180910390f35b61021b6004803603810190610216919061142e565b610577565b6040516102289190611489565b60405180910390f35b61024b60048036038101906102469190611584565b6105ae565b005b610267600480360381019061026291906115c4565b610611565b60405161027491906114b3565b60405180910390f35b610285610659565b005b61028f61066d565b60405161029c91906114b3565b60405180910390f35b6102ad610676565b6040516102ba9190611600565b60405180910390f35b6102dd60048036038101906102d891906115c4565b6106a0565b6040516102ea9190611489565b60405180910390f35b6102fb6106f6565b6040516103089190611364565b60405180910390f35b61032b6004803603810190610326919061142e565b610788565b6040516103389190611489565b60405180910390f35b61035b6004803603810190610356919061142e565b6107ff565b6040516103689190611489565b60405180910390f35b61038b60048036038101906103869190611763565b61082f565b005b6103a760048036038101906103a291906115c4565b61090b565b6040516103b49190611489565b60405180910390f35b6103d760048036038101906103d291906117bf565b610961565b6040516103e491906114b3565b60405180910390f35b610407600480360381019061040291906115c4565b6109e8565b6040516104149190611489565b60405180910390f35b610437600480360381019061043291906115c4565b610a3e565b005b610441610ac1565b60405161044e9190611600565b60405180910390f35b610471600480360381019061046c9190611763565b610aeb565b005b6060600380546104829061182e565b80601f01602080910402602001604051908101604052809291908181526020018280546104ae9061182e565b80156104fb5780601f106104d0576101008083540402835291602001916104fb565b820191906000526020600020905b8154815290600101906020018083116104de57829003601f168201915b5050505050905090565b600080610510610bc7565b905061051d818585610bcf565b600191505092915050565b6000600254905090565b60008061053d610bc7565b905061054a858285610d98565b610555858585610e24565b9250610562858585610f10565b60019150509392505050565b60006012905090565b600080610582610bc7565b90506105a38185856105948589610961565b61059e919061188e565b610bcf565b600191505092915050565b6105b6611186565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610661611186565b61066b6000611204565b565b60006001905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6060600480546107059061182e565b80601f01602080910402602001604051908101604052809291908181526020018280546107319061182e565b801561077e5780601f106107535761010080835404028352916020019161077e565b820191906000526020600020905b81548152906001019060200180831161076157829003601f168201915b5050505050905090565b600080610793610bc7565b905060006107a18286610961565b9050838110156107e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dd90611934565b60405180910390fd5b6107f38286868403610bcf565b60019250505092915050565b60008061080a610bc7565b9050610817818585610e24565b9250610824818585610f10565b600191505092915050565b610837611186565b60005b825181101561090657600083828151811061085857610857611954565b5b6020026020010151905082600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f5c83a7da429db2ed4235faa7512cc6e207edf278a96649800283c93cf1a587df81846040516108ea929190611983565b60405180910390a15080806108fe906119ac565b91505061083a565b505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610a46611186565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac90611a66565b60405180910390fd5b610abe81611204565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610af3611186565b60005b8251811015610bc2576000838281518110610b1457610b13611954565b5b6020026020010151905082600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f921341769c2075d1ae425396063d5ab65ff5006c4bc0bd0821e50ce51fb601238184604051610ba6929190611983565b60405180910390a1508080610bba906119ac565b915050610af6565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590611af8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca490611b8a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d8b91906114b3565b60405180910390a3505050565b6000610da48484610961565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e1e5781811015610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790611bf6565b60405180910390fd5b610e1d8484848403610bcf565b5b50505050565b6000610e2f846109e8565b158015610e425750610e40836109e8565b155b610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7890611c88565b60405180910390fd5b610e8a846106a0565b158015610e9d5750610e9b836106a0565b155b15610f0657610eab8461090b565b80610ebb5750610eba8361090b565b5b15610f055760006064610ecc61066d565b84610ed79190611ca8565b610ee19190611d19565b90508083610eef9190611d4a565b9250610f0385610efd610ac1565b83610f10565b505b5b8190509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7690611df0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590611e82565b60405180910390fd5b610ff98383836112ca565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690611f14565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161116d91906114b3565b60405180910390a36111808484846112cf565b50505050565b61118e610bc7565b73ffffffffffffffffffffffffffffffffffffffff166111ac610676565b73ffffffffffffffffffffffffffffffffffffffff1614611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990611f80565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561130e5780820151818401526020810190506112f3565b60008484015250505050565b6000601f19601f8301169050919050565b6000611336826112d4565b61134081856112df565b93506113508185602086016112f0565b6113598161131a565b840191505092915050565b6000602082019050818103600083015261137e818461132b565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113c58261139a565b9050919050565b6113d5816113ba565b81146113e057600080fd5b50565b6000813590506113f2816113cc565b92915050565b6000819050919050565b61140b816113f8565b811461141657600080fd5b50565b60008135905061142881611402565b92915050565b6000806040838503121561144557611444611390565b5b6000611453858286016113e3565b925050602061146485828601611419565b9150509250929050565b60008115159050919050565b6114838161146e565b82525050565b600060208201905061149e600083018461147a565b92915050565b6114ad816113f8565b82525050565b60006020820190506114c860008301846114a4565b92915050565b6000806000606084860312156114e7576114e6611390565b5b60006114f5868287016113e3565b9350506020611506868287016113e3565b925050604061151786828701611419565b9150509250925092565b600060ff82169050919050565b61153781611521565b82525050565b6000602082019050611552600083018461152e565b92915050565b6115618161146e565b811461156c57600080fd5b50565b60008135905061157e81611558565b92915050565b6000806040838503121561159b5761159a611390565b5b60006115a9858286016113e3565b92505060206115ba8582860161156f565b9150509250929050565b6000602082840312156115da576115d9611390565b5b60006115e8848285016113e3565b91505092915050565b6115fa816113ba565b82525050565b600060208201905061161560008301846115f1565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6116588261131a565b810181811067ffffffffffffffff8211171561167757611676611620565b5b80604052505050565b600061168a611386565b9050611696828261164f565b919050565b600067ffffffffffffffff8211156116b6576116b5611620565b5b602082029050602081019050919050565b600080fd5b60006116df6116da8461169b565b611680565b90508083825260208201905060208402830185811115611702576117016116c7565b5b835b8181101561172b578061171788826113e3565b845260208401935050602081019050611704565b5050509392505050565b600082601f83011261174a5761174961161b565b5b813561175a8482602086016116cc565b91505092915050565b6000806040838503121561177a57611779611390565b5b600083013567ffffffffffffffff81111561179857611797611395565b5b6117a485828601611735565b92505060206117b58582860161156f565b9150509250929050565b600080604083850312156117d6576117d5611390565b5b60006117e4858286016113e3565b92505060206117f5858286016113e3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061184657607f821691505b602082108103611859576118586117ff565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611899826113f8565b91506118a4836113f8565b92508282019050808211156118bc576118bb61185f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061191e6025836112df565b9150611929826118c2565b604082019050919050565b6000602082019050818103600083015261194d81611911565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060408201905061199860008301856115f1565b6119a5602083018461147a565b9392505050565b60006119b7826113f8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036119e9576119e861185f565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a506026836112df565b9150611a5b826119f4565b604082019050919050565b60006020820190508181036000830152611a7f81611a43565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ae26024836112df565b9150611aed82611a86565b604082019050919050565b60006020820190508181036000830152611b1181611ad5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b746022836112df565b9150611b7f82611b18565b604082019050919050565b60006020820190508181036000830152611ba381611b67565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611be0601d836112df565b9150611beb82611baa565b602082019050919050565b60006020820190508181036000830152611c0f81611bd3565b9050919050565b7f4861707079436174546f6b656e3a20626c61636b6c6973742069732064656e6960008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c726022836112df565b9150611c7d82611c16565b604082019050919050565b60006020820190508181036000830152611ca181611c65565b9050919050565b6000611cb3826113f8565b9150611cbe836113f8565b9250828202611ccc816113f8565b91508282048414831517611ce357611ce261185f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611d24826113f8565b9150611d2f836113f8565b925082611d3f57611d3e611cea565b5b828204905092915050565b6000611d55826113f8565b9150611d60836113f8565b9250828203905081811115611d7857611d7761185f565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611dda6025836112df565b9150611de582611d7e565b604082019050919050565b60006020820190508181036000830152611e0981611dcd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e6c6023836112df565b9150611e7782611e10565b604082019050919050565b60006020820190508181036000830152611e9b81611e5f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611efe6026836112df565b9150611f0982611ea2565b604082019050919050565b60006020820190508181036000830152611f2d81611ef1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f6a6020836112df565b9150611f7582611f34565b602082019050919050565b60006020820190508181036000830152611f9981611f5d565b905091905056fea26469706673582212200e2472f8f9618faa8d57784714dd2e07a4e5b6c7408801665064bbcc645fcf9e64736f6c63430008130033000000000000000000000000c90ba64ee1d950506f75b4af0ecb18dc6862b50b

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806391756d1f116100b8578063b78801581161007c578063b78801581461038d578063dd62ed3e146103bd578063e220b30e146103ed578063f2fde38b1461041d578063fbfa77cf14610439578063fe2da2371461045757610142565b806391756d1f146102c357806395d89b41146102f3578063a457c2d714610311578063a9059cbb14610341578063b4a990cc1461037157610142565b8063395093511161010a578063395093511461020157806353d6fd591461023157806370a082311461024d578063715018a61461027d5780638be311c0146102875780638da5cb5b146102a557610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610473565b60405161015c9190611364565b60405180910390f35b61017f600480360381019061017a919061142e565b610505565b60405161018c9190611489565b60405180910390f35b61019d610528565b6040516101aa91906114b3565b60405180910390f35b6101cd60048036038101906101c891906114ce565b610532565b6040516101da9190611489565b60405180910390f35b6101eb61056e565b6040516101f8919061153d565b60405180910390f35b61021b6004803603810190610216919061142e565b610577565b6040516102289190611489565b60405180910390f35b61024b60048036038101906102469190611584565b6105ae565b005b610267600480360381019061026291906115c4565b610611565b60405161027491906114b3565b60405180910390f35b610285610659565b005b61028f61066d565b60405161029c91906114b3565b60405180910390f35b6102ad610676565b6040516102ba9190611600565b60405180910390f35b6102dd60048036038101906102d891906115c4565b6106a0565b6040516102ea9190611489565b60405180910390f35b6102fb6106f6565b6040516103089190611364565b60405180910390f35b61032b6004803603810190610326919061142e565b610788565b6040516103389190611489565b60405180910390f35b61035b6004803603810190610356919061142e565b6107ff565b6040516103689190611489565b60405180910390f35b61038b60048036038101906103869190611763565b61082f565b005b6103a760048036038101906103a291906115c4565b61090b565b6040516103b49190611489565b60405180910390f35b6103d760048036038101906103d291906117bf565b610961565b6040516103e491906114b3565b60405180910390f35b610407600480360381019061040291906115c4565b6109e8565b6040516104149190611489565b60405180910390f35b610437600480360381019061043291906115c4565b610a3e565b005b610441610ac1565b60405161044e9190611600565b60405180910390f35b610471600480360381019061046c9190611763565b610aeb565b005b6060600380546104829061182e565b80601f01602080910402602001604051908101604052809291908181526020018280546104ae9061182e565b80156104fb5780601f106104d0576101008083540402835291602001916104fb565b820191906000526020600020905b8154815290600101906020018083116104de57829003601f168201915b5050505050905090565b600080610510610bc7565b905061051d818585610bcf565b600191505092915050565b6000600254905090565b60008061053d610bc7565b905061054a858285610d98565b610555858585610e24565b9250610562858585610f10565b60019150509392505050565b60006012905090565b600080610582610bc7565b90506105a38185856105948589610961565b61059e919061188e565b610bcf565b600191505092915050565b6105b6611186565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610661611186565b61066b6000611204565b565b60006001905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6060600480546107059061182e565b80601f01602080910402602001604051908101604052809291908181526020018280546107319061182e565b801561077e5780601f106107535761010080835404028352916020019161077e565b820191906000526020600020905b81548152906001019060200180831161076157829003601f168201915b5050505050905090565b600080610793610bc7565b905060006107a18286610961565b9050838110156107e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107dd90611934565b60405180910390fd5b6107f38286868403610bcf565b60019250505092915050565b60008061080a610bc7565b9050610817818585610e24565b9250610824818585610f10565b600191505092915050565b610837611186565b60005b825181101561090657600083828151811061085857610857611954565b5b6020026020010151905082600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f5c83a7da429db2ed4235faa7512cc6e207edf278a96649800283c93cf1a587df81846040516108ea929190611983565b60405180910390a15080806108fe906119ac565b91505061083a565b505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610a46611186565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac90611a66565b60405180910390fd5b610abe81611204565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610af3611186565b60005b8251811015610bc2576000838281518110610b1457610b13611954565b5b6020026020010151905082600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f921341769c2075d1ae425396063d5ab65ff5006c4bc0bd0821e50ce51fb601238184604051610ba6929190611983565b60405180910390a1508080610bba906119ac565b915050610af6565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590611af8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca490611b8a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d8b91906114b3565b60405180910390a3505050565b6000610da48484610961565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e1e5781811015610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790611bf6565b60405180910390fd5b610e1d8484848403610bcf565b5b50505050565b6000610e2f846109e8565b158015610e425750610e40836109e8565b155b610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7890611c88565b60405180910390fd5b610e8a846106a0565b158015610e9d5750610e9b836106a0565b155b15610f0657610eab8461090b565b80610ebb5750610eba8361090b565b5b15610f055760006064610ecc61066d565b84610ed79190611ca8565b610ee19190611d19565b90508083610eef9190611d4a565b9250610f0385610efd610ac1565b83610f10565b505b5b8190509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7690611df0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590611e82565b60405180910390fd5b610ff98383836112ca565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690611f14565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161116d91906114b3565b60405180910390a36111808484846112cf565b50505050565b61118e610bc7565b73ffffffffffffffffffffffffffffffffffffffff166111ac610676565b73ffffffffffffffffffffffffffffffffffffffff1614611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990611f80565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561130e5780820151818401526020810190506112f3565b60008484015250505050565b6000601f19601f8301169050919050565b6000611336826112d4565b61134081856112df565b93506113508185602086016112f0565b6113598161131a565b840191505092915050565b6000602082019050818103600083015261137e818461132b565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113c58261139a565b9050919050565b6113d5816113ba565b81146113e057600080fd5b50565b6000813590506113f2816113cc565b92915050565b6000819050919050565b61140b816113f8565b811461141657600080fd5b50565b60008135905061142881611402565b92915050565b6000806040838503121561144557611444611390565b5b6000611453858286016113e3565b925050602061146485828601611419565b9150509250929050565b60008115159050919050565b6114838161146e565b82525050565b600060208201905061149e600083018461147a565b92915050565b6114ad816113f8565b82525050565b60006020820190506114c860008301846114a4565b92915050565b6000806000606084860312156114e7576114e6611390565b5b60006114f5868287016113e3565b9350506020611506868287016113e3565b925050604061151786828701611419565b9150509250925092565b600060ff82169050919050565b61153781611521565b82525050565b6000602082019050611552600083018461152e565b92915050565b6115618161146e565b811461156c57600080fd5b50565b60008135905061157e81611558565b92915050565b6000806040838503121561159b5761159a611390565b5b60006115a9858286016113e3565b92505060206115ba8582860161156f565b9150509250929050565b6000602082840312156115da576115d9611390565b5b60006115e8848285016113e3565b91505092915050565b6115fa816113ba565b82525050565b600060208201905061161560008301846115f1565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6116588261131a565b810181811067ffffffffffffffff8211171561167757611676611620565b5b80604052505050565b600061168a611386565b9050611696828261164f565b919050565b600067ffffffffffffffff8211156116b6576116b5611620565b5b602082029050602081019050919050565b600080fd5b60006116df6116da8461169b565b611680565b90508083825260208201905060208402830185811115611702576117016116c7565b5b835b8181101561172b578061171788826113e3565b845260208401935050602081019050611704565b5050509392505050565b600082601f83011261174a5761174961161b565b5b813561175a8482602086016116cc565b91505092915050565b6000806040838503121561177a57611779611390565b5b600083013567ffffffffffffffff81111561179857611797611395565b5b6117a485828601611735565b92505060206117b58582860161156f565b9150509250929050565b600080604083850312156117d6576117d5611390565b5b60006117e4858286016113e3565b92505060206117f5858286016113e3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061184657607f821691505b602082108103611859576118586117ff565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611899826113f8565b91506118a4836113f8565b92508282019050808211156118bc576118bb61185f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061191e6025836112df565b9150611929826118c2565b604082019050919050565b6000602082019050818103600083015261194d81611911565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060408201905061199860008301856115f1565b6119a5602083018461147a565b9392505050565b60006119b7826113f8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036119e9576119e861185f565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a506026836112df565b9150611a5b826119f4565b604082019050919050565b60006020820190508181036000830152611a7f81611a43565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ae26024836112df565b9150611aed82611a86565b604082019050919050565b60006020820190508181036000830152611b1181611ad5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b746022836112df565b9150611b7f82611b18565b604082019050919050565b60006020820190508181036000830152611ba381611b67565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611be0601d836112df565b9150611beb82611baa565b602082019050919050565b60006020820190508181036000830152611c0f81611bd3565b9050919050565b7f4861707079436174546f6b656e3a20626c61636b6c6973742069732064656e6960008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c726022836112df565b9150611c7d82611c16565b604082019050919050565b60006020820190508181036000830152611ca181611c65565b9050919050565b6000611cb3826113f8565b9150611cbe836113f8565b9250828202611ccc816113f8565b91508282048414831517611ce357611ce261185f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611d24826113f8565b9150611d2f836113f8565b925082611d3f57611d3e611cea565b5b828204905092915050565b6000611d55826113f8565b9150611d60836113f8565b9250828203905081811115611d7857611d7761185f565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611dda6025836112df565b9150611de582611d7e565b604082019050919050565b60006020820190508181036000830152611e0981611dcd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e6c6023836112df565b9150611e7782611e10565b604082019050919050565b60006020820190508181036000830152611e9b81611e5f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611efe6026836112df565b9150611f0982611ea2565b604082019050919050565b60006020820190508181036000830152611f2d81611ef1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f6a6020836112df565b9150611f7582611f34565b602082019050919050565b60006020820190508181036000830152611f9981611f5d565b905091905056fea26469706673582212200e2472f8f9618faa8d57784714dd2e07a4e5b6c7408801665064bbcc645fcf9e64736f6c63430008130033

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

000000000000000000000000c90ba64ee1d950506f75b4af0ecb18dc6862b50b

-----Decoded View---------------
Arg [0] : vault_ (address): 0xc90bA64ee1D950506F75b4Af0Ecb18Dc6862b50B

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


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

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.