ETH Price: $3,432.89 (+2.66%)

Contract

0xc4EA977c6c3519a8527f3Ff0728cAaB40c107152
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve215115462024-12-29 23:54:5918 days ago1735516499IN
0xc4EA977c...40c107152
0 ETH0.000131464.2585886
Approve215115432024-12-29 23:54:2318 days ago1735516463IN
0xc4EA977c...40c107152
0 ETH0.000152485.2818165
Approve210310542024-10-23 21:42:5985 days ago1729719779IN
0xc4EA977c...40c107152
0 ETH0.000255868.86268182
Approve192883792024-02-23 6:03:11329 days ago1708668191IN
0xc4EA977c...40c107152
0 ETH0.0008592829.7641144
Approve173793952023-05-31 14:17:23597 days ago1685542643IN
0xc4EA977c...40c107152
0 ETH0.001491451.65936658
Approve173793942023-05-31 14:17:11597 days ago1685542631IN
0xc4EA977c...40c107152
0 ETH0.0014816751.32242843
Approve170126022023-04-09 18:48:35649 days ago1681066115IN
0xc4EA977c...40c107152
0 ETH0.0005900820.439238
Approve159780752022-11-15 21:20:35793 days ago1668547235IN
0xc4EA977c...40c107152
0 ETH0.000532718.45196161
Approve159780722022-11-15 21:19:59793 days ago1668547199IN
0xc4EA977c...40c107152
0 ETH0.0004925217.05993382
Approve159545742022-11-12 14:37:23797 days ago1668263843IN
0xc4EA977c...40c107152
0 ETH0.0004497714.569955
Approve159543712022-11-12 13:56:11797 days ago1668261371IN
0xc4EA977c...40c107152
0 ETH0.0004462414.45547236
Approve159543462022-11-12 13:51:11797 days ago1668261071IN
0xc4EA977c...40c107152
0 ETH0.0004561614.77698024
Approve159543332022-11-12 13:48:35797 days ago1668260915IN
0xc4EA977c...40c107152
0 ETH0.0004003613.86797229
Approve159543282022-11-12 13:47:35797 days ago1668260855IN
0xc4EA977c...40c107152
0 ETH0.0004029313.95685195
Approve156662832022-10-03 7:58:23837 days ago1664783903IN
0xc4EA977c...40c107152
0 ETH0.0002912510.08838044
Approve154220542022-08-27 14:20:34874 days ago1661610034IN
0xc4EA977c...40c107152
0 ETH0.0008604916.82172197
Approve154205422022-08-27 8:33:52874 days ago1661589232IN
0xc4EA977c...40c107152
0 ETH0.000339886.64437565
Approve151592542022-07-17 9:00:48915 days ago1658048448IN
0xc4EA977c...40c107152
0 ETH0.0003463311.99628672
Approve151592532022-07-17 9:00:10915 days ago1658048410IN
0xc4EA977c...40c107152
0 ETH0.0003126910.83102215
Approve151330062022-07-13 7:39:34919 days ago1657697974IN
0xc4EA977c...40c107152
0 ETH0.0003172110.98769987
Approve150883472022-07-06 10:20:35926 days ago1657102835IN
0xc4EA977c...40c107152
0 ETH0.0006275621.73762571
Approve150883422022-07-06 10:19:42926 days ago1657102782IN
0xc4EA977c...40c107152
0 ETH0.0006466922.40017256
Approve150882942022-07-06 10:09:42926 days ago1657102182IN
0xc4EA977c...40c107152
0 ETH0.000536218.5731048
Approve150882862022-07-06 10:08:10926 days ago1657102090IN
0xc4EA977c...40c107152
0 ETH0.0005775220.00428921
Approve150882622022-07-06 10:02:52926 days ago1657101772IN
0xc4EA977c...40c107152
0 ETH0.0009761633.81236217
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:
BigFoot

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : BigFoot.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./Authority.sol";


contract BigFoot is ERC20("BigFoot", "BGFT"), Authority {
	uint public constant maxSupply = 50_000_000_000 * 10**18;

	mapping(address => bool) public isBlacklisted;

	constructor(address _supplyHolder) {
		_mint(_supplyHolder, maxSupply);
	}

	// Modifiers
	modifier isAuthorized(address addr) {
		require(!isBlacklisted[addr], "BigFoot: Blacklisted");
		_;
	}

	// Setters
	function setIsBlacklisted(address _new, bool _value) external onlyAuthority {
		isBlacklisted[_new] = _value;
	}

	// Overrides
	function _transfer(
		address from,
		address to,
		uint256 amount
	)
		internal
		override
		isAuthorized(from)
		isAuthorized(to)
	{
		super._transfer(from, to, amount);
	}

	function _approve(
		address owner,
		address spender,
		uint256 amount
	)
		internal
		override
		isAuthorized(owner)
		isAuthorized(spender)
	{
		super._approve(owner, spender, amount);
	}
}

File 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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}.
     *
     * The default 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");
        unchecked {
            _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");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `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");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `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;
        _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;
        }
        _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 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 3 of 6 : Authority.sol
// SPDX-License-Identifier: AGPL-3.0-or-later

pragma solidity ^0.8.0;


contract Authority {
	
	address[] public authorities;
	mapping(address => bool) public isAuthority;

	constructor() {
		authorities.push(msg.sender);
		isAuthority[msg.sender] = true;
	}

	modifier onlySuperAuthority() {
		require(authorities[0] == msg.sender, "Authority: Only Super Authority");
		_;
	}
	
	modifier onlyAuthority() {
		require(isAuthority[msg.sender], "Authority: Only Authority");
		_;
	}

	function addAuthority(address _new, bool _change) external onlySuperAuthority {
		require(!isAuthority[_new], "Authoritys: Already authority");
		isAuthority[_new] = true;
		if (_change) {
			authorities.push(authorities[0]);
			authorities[0] = _new;
		} else {
			authorities.push(_new);
		}
	}

	function removeAuthority(address _new) external onlySuperAuthority {
		require(isAuthority[_new], "Authority: Not authority");
		require(_new != authorities[0], "Authority: Cannot remove super authority");
		for (uint i = 1; i < authorities.length; i++) {
			if (authorities[i] == _new) {
				authorities[i] = authorities[authorities.length - 1];
				authorities.pop();
				break;
			}
		}
		isAuthority[_new] = false;
	}

	function getAuthoritiesSize() external view returns(uint) {
		return authorities.length;
	}
}

File 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

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 5 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 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": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_supplyHolder","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":"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":"_new","type":"address"},{"internalType":"bool","name":"_change","type":"bool"}],"name":"addAuthority","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":"uint256","name":"","type":"uint256"}],"name":"authorities","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"getAuthoritiesSize","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":"isAuthority","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_new","type":"address"}],"name":"removeAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_new","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setIsBlacklisted","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"}]

60806040523480156200001157600080fd5b506040516200161d3803806200161d83398101604081905262000034916200029e565b6040805180820182526007815266109a59d19bdbdd60ca1b6020808301918252835180850190945260048452631091d19560e21b9084015281519192916200007f91600391620001f8565b50805162000095906004906020840190620001f8565b50506005805460018181019092557f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b031916339081179091556000908152600660205260409020805460ff19169091179055506200010a816ba18f07d736b90be55000000062000111565b5062000370565b6001600160a01b038216620001435760405162461bcd60e51b81526004016200013a90620002ce565b60405180910390fd5b6200015160008383620001f3565b80600260008282546200016591906200030e565b90915550506001600160a01b03821660009081526020819052604081208054839290620001949084906200030e565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001d990859062000305565b60405180910390a3620001ef60008383620001f3565b5050565b505050565b828054620002069062000333565b90600052602060002090601f0160209004810192826200022a576000855562000275565b82601f106200024557805160ff191683800117855562000275565b8280016001018555821562000275579182015b828111156200027557825182559160200191906001019062000258565b506200028392915062000287565b5090565b5b8082111562000283576000815560010162000288565b600060208284031215620002b0578081fd5b81516001600160a01b0381168114620002c7578182fd5b9392505050565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200032e57634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200034857607f821691505b602082108114156200036a57634e487b7160e01b600052602260045260246000fd5b50919050565b61129d80620003806000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806395d89b41116100ad578063d5abeb0111610071578063d5abeb0114610250578063dd62ed3e14610258578063e69eb7941461026b578063e6b2844914610273578063fe575a871461028657610121565b806395d89b41146101fa578063a0e3849214610202578063a457c2d714610217578063a9059cbb1461022a578063d544e0101461023d57610121565b806323b872dd116100f457806323b872dd1461018c578063313ce5671461019f57806339509351146101b4578063494503d4146101c757806370a08231146101e757610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd146101645780632330f24714610179575b600080fd5b61012e610299565b60405161013b9190610e2f565b60405180910390f35b610157610152366004610dcf565b61032b565b60405161013b9190610e24565b61016c610348565b60405161013b91906111b5565b610157610187366004610d07565b61034e565b61015761019a366004610d5a565b610363565b6101a76103fc565b60405161013b91906111be565b6101576101c2366004610dcf565b610401565b6101da6101d5366004610df8565b610455565b60405161013b9190610e10565b61016c6101f5366004610d07565b61047f565b61012e61049e565b610215610210366004610d95565b6104ad565b005b610157610225366004610dcf565b610507565b610157610238366004610dcf565b610580565b61021561024b366004610d07565b610594565b61016c6107e6565b61016c610266366004610d28565b6107f6565b61016c610821565b610215610281366004610d95565b610827565b610157610294366004610d07565b6109eb565b6060600380546102a8906111fb565b80601f01602080910402602001604051908101604052809291908181526020018280546102d4906111fb565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b600061033f610338610a00565b8484610a04565b50600192915050565b60025490565b60066020526000908152604090205460ff1681565b6000610370848484610a8c565b6001600160a01b038416600090815260016020526040812081610391610a00565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103dd5760405162461bcd60e51b81526004016103d490610fcc565b60405180910390fd5b6103f1856103e9610a00565b858403610a04565b506001949350505050565b601290565b600061033f61040e610a00565b84846001600061041c610a00565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461045091906111cc565b610a04565b6005818154811061046557600080fd5b6000918252602090912001546001600160a01b0316905081565b6001600160a01b0381166000908152602081905260409020545b919050565b6060600480546102a8906111fb565b3360009081526006602052604090205460ff166104dc5760405162461bcd60e51b81526004016103d490610ec5565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b60008060016000610516610a00565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105625760405162461bcd60e51b81526004016103d490611170565b61057661056d610a00565b85858403610a04565b5060019392505050565b600061033f61058d610a00565b8484610a8c565b336001600160a01b031660056000815481106105c057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316146105f25760405162461bcd60e51b81526004016103d49061110b565b6001600160a01b03811660009081526006602052604090205460ff1661062a5760405162461bcd60e51b81526004016103d490611014565b600560008154811061064c57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03828116911614156106835760405162461bcd60e51b81526004016103d490610f84565b60015b6005548110156107c457816001600160a01b0316600582815481106106bb57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031614156107b257600580546106e6906001906111e4565b8154811061070457634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600580546001600160a01b03909216918390811061073e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600580548061078b57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190556107c4565b806107bc81611236565b915050610686565b506001600160a01b03166000908152600660205260409020805460ff19169055565b6ba18f07d736b90be55000000081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60055490565b336001600160a01b0316600560008154811061085357634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316146108855760405162461bcd60e51b81526004016103d49061110b565b6001600160a01b03821660009081526006602052604090205460ff16156108be5760405162461bcd60e51b81526004016103d4906110d4565b6001600160a01b0382166000908152600660205260409020805460ff19166001179055801561099b5760058060008154811061090a57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910154835460018101855593835290822090920180546001600160a01b0319166001600160a01b03909316929092179091556005805484929061096857634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506109e7565b600580546001810182556000919091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319166001600160a01b0384161790555b5050565b60076020526000908152604090205460ff1681565b3390565b6001600160a01b038316600090815260076020526040902054839060ff1615610a3f5760405162461bcd60e51b81526004016103d490611142565b6001600160a01b038316600090815260076020526040902054839060ff1615610a7a5760405162461bcd60e51b81526004016103d490611142565b610a85858585610b0d565b5050505050565b6001600160a01b038316600090815260076020526040902054839060ff1615610ac75760405162461bcd60e51b81526004016103d490611142565b6001600160a01b038316600090815260076020526040902054839060ff1615610b025760405162461bcd60e51b81526004016103d490611142565b610a85858585610bc1565b6001600160a01b038316610b335760405162461bcd60e51b81526004016103d490611090565b6001600160a01b038216610b595760405162461bcd60e51b81526004016103d490610efc565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610bb49085906111b5565b60405180910390a3505050565b6001600160a01b038316610be75760405162461bcd60e51b81526004016103d49061104b565b6001600160a01b038216610c0d5760405162461bcd60e51b81526004016103d490610e82565b610c18838383610ceb565b6001600160a01b03831660009081526020819052604090205481811015610c515760405162461bcd60e51b81526004016103d490610f3e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610c889084906111cc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cd291906111b5565b60405180910390a3610ce5848484610ceb565b50505050565b505050565b80356001600160a01b038116811461049957600080fd5b600060208284031215610d18578081fd5b610d2182610cf0565b9392505050565b60008060408385031215610d3a578081fd5b610d4383610cf0565b9150610d5160208401610cf0565b90509250929050565b600080600060608486031215610d6e578081fd5b610d7784610cf0565b9250610d8560208501610cf0565b9150604084013590509250925092565b60008060408385031215610da7578182fd5b610db083610cf0565b915060208301358015158114610dc4578182fd5b809150509250929050565b60008060408385031215610de1578182fd5b610dea83610cf0565b946020939093013593505050565b600060208284031215610e09578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610e5b57858101830151858201604001528201610e3f565b81811115610e6c5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526019908201527f417574686f726974793a204f6e6c7920417574686f7269747900000000000000604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f417574686f726974793a2043616e6e6f742072656d6f766520737570657220616040820152677574686f7269747960c01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526018908201527f417574686f726974793a204e6f7420617574686f726974790000000000000000604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f417574686f72697479733a20416c726561647920617574686f72697479000000604082015260600190565b6020808252601f908201527f417574686f726974793a204f6e6c7920537570657220417574686f7269747900604082015260600190565b602080825260149082015273109a59d19bdbdd0e88109b1858dadb1a5cdd195960621b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b600082198211156111df576111df611251565b500190565b6000828210156111f6576111f6611251565b500390565b60028104600182168061120f57607f821691505b6020821081141561123057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561124a5761124a611251565b5060010190565b634e487b7160e01b600052601160045260246000fdfea26469706673582212203710e24d63ed7201777fe410208e1670697ddab70d44d61016cdcdff5cfe536664736f6c63430008000033000000000000000000000000c29766348744f9d9df715f465f7ebfd7f729ec82

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806395d89b41116100ad578063d5abeb0111610071578063d5abeb0114610250578063dd62ed3e14610258578063e69eb7941461026b578063e6b2844914610273578063fe575a871461028657610121565b806395d89b41146101fa578063a0e3849214610202578063a457c2d714610217578063a9059cbb1461022a578063d544e0101461023d57610121565b806323b872dd116100f457806323b872dd1461018c578063313ce5671461019f57806339509351146101b4578063494503d4146101c757806370a08231146101e757610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd146101645780632330f24714610179575b600080fd5b61012e610299565b60405161013b9190610e2f565b60405180910390f35b610157610152366004610dcf565b61032b565b60405161013b9190610e24565b61016c610348565b60405161013b91906111b5565b610157610187366004610d07565b61034e565b61015761019a366004610d5a565b610363565b6101a76103fc565b60405161013b91906111be565b6101576101c2366004610dcf565b610401565b6101da6101d5366004610df8565b610455565b60405161013b9190610e10565b61016c6101f5366004610d07565b61047f565b61012e61049e565b610215610210366004610d95565b6104ad565b005b610157610225366004610dcf565b610507565b610157610238366004610dcf565b610580565b61021561024b366004610d07565b610594565b61016c6107e6565b61016c610266366004610d28565b6107f6565b61016c610821565b610215610281366004610d95565b610827565b610157610294366004610d07565b6109eb565b6060600380546102a8906111fb565b80601f01602080910402602001604051908101604052809291908181526020018280546102d4906111fb565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b600061033f610338610a00565b8484610a04565b50600192915050565b60025490565b60066020526000908152604090205460ff1681565b6000610370848484610a8c565b6001600160a01b038416600090815260016020526040812081610391610a00565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103dd5760405162461bcd60e51b81526004016103d490610fcc565b60405180910390fd5b6103f1856103e9610a00565b858403610a04565b506001949350505050565b601290565b600061033f61040e610a00565b84846001600061041c610a00565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461045091906111cc565b610a04565b6005818154811061046557600080fd5b6000918252602090912001546001600160a01b0316905081565b6001600160a01b0381166000908152602081905260409020545b919050565b6060600480546102a8906111fb565b3360009081526006602052604090205460ff166104dc5760405162461bcd60e51b81526004016103d490610ec5565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b60008060016000610516610a00565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105625760405162461bcd60e51b81526004016103d490611170565b61057661056d610a00565b85858403610a04565b5060019392505050565b600061033f61058d610a00565b8484610a8c565b336001600160a01b031660056000815481106105c057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316146105f25760405162461bcd60e51b81526004016103d49061110b565b6001600160a01b03811660009081526006602052604090205460ff1661062a5760405162461bcd60e51b81526004016103d490611014565b600560008154811061064c57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03828116911614156106835760405162461bcd60e51b81526004016103d490610f84565b60015b6005548110156107c457816001600160a01b0316600582815481106106bb57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031614156107b257600580546106e6906001906111e4565b8154811061070457634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600580546001600160a01b03909216918390811061073e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600580548061078b57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190556107c4565b806107bc81611236565b915050610686565b506001600160a01b03166000908152600660205260409020805460ff19169055565b6ba18f07d736b90be55000000081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60055490565b336001600160a01b0316600560008154811061085357634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316146108855760405162461bcd60e51b81526004016103d49061110b565b6001600160a01b03821660009081526006602052604090205460ff16156108be5760405162461bcd60e51b81526004016103d4906110d4565b6001600160a01b0382166000908152600660205260409020805460ff19166001179055801561099b5760058060008154811061090a57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910154835460018101855593835290822090920180546001600160a01b0319166001600160a01b03909316929092179091556005805484929061096857634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506109e7565b600580546001810182556000919091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319166001600160a01b0384161790555b5050565b60076020526000908152604090205460ff1681565b3390565b6001600160a01b038316600090815260076020526040902054839060ff1615610a3f5760405162461bcd60e51b81526004016103d490611142565b6001600160a01b038316600090815260076020526040902054839060ff1615610a7a5760405162461bcd60e51b81526004016103d490611142565b610a85858585610b0d565b5050505050565b6001600160a01b038316600090815260076020526040902054839060ff1615610ac75760405162461bcd60e51b81526004016103d490611142565b6001600160a01b038316600090815260076020526040902054839060ff1615610b025760405162461bcd60e51b81526004016103d490611142565b610a85858585610bc1565b6001600160a01b038316610b335760405162461bcd60e51b81526004016103d490611090565b6001600160a01b038216610b595760405162461bcd60e51b81526004016103d490610efc565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610bb49085906111b5565b60405180910390a3505050565b6001600160a01b038316610be75760405162461bcd60e51b81526004016103d49061104b565b6001600160a01b038216610c0d5760405162461bcd60e51b81526004016103d490610e82565b610c18838383610ceb565b6001600160a01b03831660009081526020819052604090205481811015610c515760405162461bcd60e51b81526004016103d490610f3e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610c889084906111cc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cd291906111b5565b60405180910390a3610ce5848484610ceb565b50505050565b505050565b80356001600160a01b038116811461049957600080fd5b600060208284031215610d18578081fd5b610d2182610cf0565b9392505050565b60008060408385031215610d3a578081fd5b610d4383610cf0565b9150610d5160208401610cf0565b90509250929050565b600080600060608486031215610d6e578081fd5b610d7784610cf0565b9250610d8560208501610cf0565b9150604084013590509250925092565b60008060408385031215610da7578182fd5b610db083610cf0565b915060208301358015158114610dc4578182fd5b809150509250929050565b60008060408385031215610de1578182fd5b610dea83610cf0565b946020939093013593505050565b600060208284031215610e09578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610e5b57858101830151858201604001528201610e3f565b81811115610e6c5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526019908201527f417574686f726974793a204f6e6c7920417574686f7269747900000000000000604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f417574686f726974793a2043616e6e6f742072656d6f766520737570657220616040820152677574686f7269747960c01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526018908201527f417574686f726974793a204e6f7420617574686f726974790000000000000000604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f417574686f72697479733a20416c726561647920617574686f72697479000000604082015260600190565b6020808252601f908201527f417574686f726974793a204f6e6c7920537570657220417574686f7269747900604082015260600190565b602080825260149082015273109a59d19bdbdd0e88109b1858dadb1a5cdd195960621b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b600082198211156111df576111df611251565b500190565b6000828210156111f6576111f6611251565b500390565b60028104600182168061120f57607f821691505b6020821081141561123057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561124a5761124a611251565b5060010190565b634e487b7160e01b600052601160045260246000fdfea26469706673582212203710e24d63ed7201777fe410208e1670697ddab70d44d61016cdcdff5cfe536664736f6c63430008000033

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

000000000000000000000000c29766348744f9d9df715f465f7ebfd7f729ec82

-----Decoded View---------------
Arg [0] : _supplyHolder (address): 0xC29766348744F9d9Df715F465f7EbfD7f729Ec82

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


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.