ETH Price: $2,416.21 (+0.45%)

Token

Sentience Points (SENT)
 

Overview

Max Total Supply

42,690,143.5 SENT

Holders

14

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
simuuu.eth
Balance
331.817464761225969664 SENT

Value
$0.00
0x2e20df63f5ffb0578cf4ccc223cb3003a50200b1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Sentience

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 9999 runs

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

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

contract Sentience is ERC20, Ownable {
    mapping(address => bool) public whitelist;
    event WhiteListUpdated(address indexed _address, bool _isWhitelisted);

    bool public mintingEnabled = true;
    event MintingDisabled();

    bool public transferEnabled = true;
    event TransferEnabled();

    constructor() ERC20("Sentience Points", "SENT") {
        _mint(msg.sender, 42690143500000000000000000);
        whitelist[msg.sender] = true;
    }

    modifier onlyWhitelisted() {
        require(whitelist[msg.sender] || transferEnabled, "Sender is not whitelisted and trasfers are disabled");
        _;
    }

    function addToWhitelist(address _address) external onlyOwner {
        whitelist[_address] = true;
        emit WhiteListUpdated(_address, true);
    }

    function removeFromWhitelist(address _address) external onlyOwner {
        whitelist[_address] = false;
        emit WhiteListUpdated(_address, false);
    }

    function disableMinting() external onlyOwner {
        mintingEnabled = false;
        emit MintingDisabled();
    }

    function enableTransfers() external onlyOwner {
        transferEnabled = true;
        emit TransferEnabled();
    }

    function mint(uint256 amount) external onlyOwner {
        require(mintingEnabled, "Minting is disabled");
        _mint(msg.sender, amount);
    }

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

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

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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.7.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.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:
     *
     * - `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;
        }
        _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;
        _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 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.6.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
{
  "viaIR": true,
  "optimizer": {
    "enabled": true,
    "runs": 9999
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "remappings": [
    "forge-std/=lib/forge-std/src/",
    "communal/=lib/communal/",
    "@prb/math/=lib/prb-math/src/",
    "@prb/test/=lib/prb-test/src/",
    "local/=src/",
    "openzeppelin/=lib/openzeppelin/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "solmate/=lib/solmate/src/",
    "Common/=lib/Common/",
    "ERC20/=lib/ERC20/",
    "Governance/=lib/Governance/",
    "Math/=lib/Math/",
    "Staking/=lib/Staking/",
    "Utils/=lib/Utils/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "layerzerolabs/=lib/solidity-examples/",
    "prb-math/=lib/prb-math/src/",
    "prb-test/=lib/prb-math/lib/prb-test/src/",
    "solidity-examples/=lib/solidity-examples/contracts/",
    "src/=lib/prb-math/src/"
  ],
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"MintingDisabled","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"},{"anonymous":false,"inputs":[],"name":"TransferEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"_isWhitelisted","type":"bool"}],"name":"WhiteListUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"disableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6080346200045d576040906001600160401b038183018181118382101762000447578352601082526020906f53656e7469656e636520506f696e747360801b82840152835184810181811083821117620004475785526004918282526314d1539560e21b8483015284519181831162000432576003908154936001978886811c9616801562000427575b8887101462000412578190601f96878111620003bc575b508890878311600114620003555760009262000349575b505060001982851b1c191690881b1782555b8051928311620003345784548781811c9116801562000329575b87821014620003145790818585949311620002bc575b508690858411600114620002515760009362000245575b505082871b92600019911b1c19161782555b60058054336001600160a01b03198216811790925586519391906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a361010161ffff196007541617600755331562000208575050506006906200019360025462000462565b600255336000526000815283600020620001ae815462000462565b905583516a234ffd50fa6802c9ce0000815260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef833393a33360005252816000209060ff19825416179055516111609081620004928239f35b9260649362461bcd60e51b845283015260248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b01519150388062000110565b9190889450601f1984169287600052886000209360005b8a828210620002a557505085116200028a575b50505050811b01825562000122565b01519060f884600019921b161c19169055388080806200027b565b8385015187558c9890960195938401930162000268565b9091925085600052866000208580860160051c8201928987106200030a575b918a9187969594930160051c01915b828110620002fa575050620000f9565b600081558695508a9101620002ea565b92508192620002db565b602286634e487b7160e01b6000525260246000fd5b90607f1690620000e3565b604185634e487b7160e01b6000525260246000fd5b015190503880620000b7565b908a9350601f19831691866000528a6000209260005b8c828210620003a557505084116200038c575b505050811b018255620000c9565b015160001983871b60f8161c191690553880806200037e565b8385015186558e979095019493840193016200036b565b90915084600052886000208780850160051c8201928b861062000408575b918c91869594930160051c01915b828110620003f8575050620000a0565b600081558594508c9101620003e8565b92508192620003da565b602287634e487b7160e01b6000525260246000fd5b95607f169562000089565b604184634e487b7160e01b6000525260246000fd5b634e487b7160e01b600052604160045260246000fd5b600080fd5b906a234ffd50fa6802c9ce000082018092116200047b57565b634e487b7160e01b600052601160045260246000fdfe6080604081815260048036101561001557600080fd5b600092833560e01c90816306fdde0314610b9757508063095ea7b314610b6d57806318160ddd14610b4e57806323b872dd14610a2a578063313ce56714610a0e57806339509351146109b25780634cd412d51461098b57806370a0823114610948578063715018a6146108c85780637e5cd5c1146108605780638ab1d681146107cb5780638da5cb5b1461079657806395d89b41146106175780639b19251a146105ce5780639fd6db12146105aa578063a0712d68146104a2578063a457c2d7146103d8578063a9059cbb1461037a578063af35c6c71461030b578063dd62ed3e146102b5578063e43252d7146102185763f2fde38b1461011557600080fd5b346102145760206003193601126102145761012e610cc4565b90610137610d0f565b73ffffffffffffffffffffffffffffffffffffffff8092169283156101ab575050600554827fffffffffffffffffffffffff0000000000000000000000000000000000000000821617600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b8280fd5b5050346102b15760206003193601126102b1577fb1288e9f7bae3599e10819d5553febea48e11a6f8f585b32c8abad397dd2627e602073ffffffffffffffffffffffffffffffffffffffff61026b610cc4565b610273610d0f565b16928385526006825280852060017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008254161790555160018152a280f35b5080fd5b5050346102b157806003193601126102b157806020926102d3610cc4565b6102db610cec565b73ffffffffffffffffffffffffffffffffffffffff91821683526001865283832091168252845220549051908152f35b8334610377578060031936011261037757610324610d0f565b6101007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff60075416176007557f75fce015c314a132947a3e42f6ab79ab8e05397dabf35b4d742dea228bbadc2d8180a180f35b80fd5b5050346102b157806003193601126102b1576103c260209260ff8361039d610cc4565b923381526006875220541680156103c9575b6103b890610ef1565b6024359033610f62565b5160018152f35b5060075460081c60ff166103af565b5082346103775782600319360112610377576103f2610cc4565b918360243592338152600160205281812073ffffffffffffffffffffffffffffffffffffffff86168252602052205490828210610439576020856103c28585038733610db0565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152fd5b509034610214576020600319360112610214578135916104c0610d0f565b60ff600754161561056857331561052657506104de82600254610d74565b600255338352826020528083206104f6838254610d74565b905551908152817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60203393a380f35b6020606492519162461bcd60e51b8352820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b6020606492519162461bcd60e51b8352820152601360248201527f4d696e74696e672069732064697361626c6564000000000000000000000000006044820152fd5b5050346102b157816003193601126102b15760209060ff6007541690519015158152f35b5050346102b15760206003193601126102b15760ff8160209373ffffffffffffffffffffffffffffffffffffffff610604610cc4565b1681526006855220541690519015158152f35b509190346102b157816003193601126102b157805190828454600181811c9080831692831561078c575b602093848410811461076057838852879594939291811561072357506001146106c5575b50505003601f01601f191682019267ffffffffffffffff8411838510176106995750829182610695925282610c7c565b0390f35b806041867f4e487b71000000000000000000000000000000000000000000000000000000006024945252fd5b8888529193925086917f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b82841061070d5750505090601f1992601f92820101918193610665565b80548885018701528794509285019281016106f0565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016848701525050151560051b830101905081601f601f19610665565b60248960228c7f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b91607f1691610641565b5050346102b157816003193601126102b15760209073ffffffffffffffffffffffffffffffffffffffff600554169051908152f35b5050346102b15760206003193601126102b1577fb1288e9f7bae3599e10819d5553febea48e11a6f8f585b32c8abad397dd2627e602073ffffffffffffffffffffffffffffffffffffffff61081e610cc4565b610826610d0f565b1692838552600682528085207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00815416905551848152a280f35b8334610377578060031936011261037757610879610d0f565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00600754166007557faf79b4370f6af9d950564bbe6b81f7f0834c003c455db9248f4e55e6bf865eb78180a180f35b83346103775780600319360112610377576108e1610d0f565b8073ffffffffffffffffffffffffffffffffffffffff6005547fffffffffffffffffffffffff00000000000000000000000000000000000000008116600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b5050346102b15760206003193601126102b1578060209273ffffffffffffffffffffffffffffffffffffffff61097c610cc4565b16815280845220549051908152f35b5050346102b157816003193601126102b15760209060ff60075460081c1690519015158152f35b5050346102b157806003193601126102b1576103c2602092610a076109d5610cc4565b913381526001865284812073ffffffffffffffffffffffffffffffffffffffff84168252865284602435912054610d74565b9033610db0565b5050346102b157816003193601126102b1576020905160128152f35b508290346102b15760606003193601126102b157610a46610cc4565b610a4e610cec565b918460443594338152600660205260ff82822054168015610b3f575b610a7390610ef1565b73ffffffffffffffffffffffffffffffffffffffff8416815260016020528181203382526020522054907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610ad3575b6020866103c2878787610f62565b848210610afc5750918391610af1602096956103c295033383610db0565b919394819350610ac5565b606490602087519162461bcd60e51b8352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b5060075460081c60ff16610a6a565b5050346102b157816003193601126102b1576020906002549051908152f35b5050346102b157806003193601126102b1576020906103c2610b8d610cc4565b6024359033610db0565b849150833461021457826003193601126102145782600354600181811c90808316928315610c72575b60209384841081146107605783885287959493929181156107235750600114610c135750505003601f01601f191682019267ffffffffffffffff8411838510176106995750829182610695925282610c7c565b600388529193925086917fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410610c5c5750505090601f1992601f92820101918193610665565b8054888501870152879450928501928101610c3f565b91607f1691610bc0565b60208082528251818301819052939260005b858110610cb057505050601f19601f8460006040809697860101520116010190565b818101830151848201604001528201610c8e565b6004359073ffffffffffffffffffffffffffffffffffffffff82168203610ce757565b600080fd5b6024359073ffffffffffffffffffffffffffffffffffffffff82168203610ce757565b73ffffffffffffffffffffffffffffffffffffffff600554163303610d3057565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b91908201809211610d8157565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff809116918215610e885716918215610e1e5760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b608460405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b608460405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b15610ef857565b608460405162461bcd60e51b815260206004820152603360248201527f53656e646572206973206e6f742077686974656c697374656420616e6420747260448201527f617366657273206172652064697361626c6564000000000000000000000000006064820152fd5b73ffffffffffffffffffffffffffffffffffffffff8091169182156110c0571691821561105657600082815280602052604081205491808310610fec57604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220610fe1828254610d74565b9055604051908152a3565b608460405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152fd5b608460405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b608460405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fdfea2646970667358221220278ac829b08b5673dcefb61339c4d706bf68548ff9d8c02249caeddf28eaa49164736f6c63430008120033

Deployed Bytecode

0x6080604081815260048036101561001557600080fd5b600092833560e01c90816306fdde0314610b9757508063095ea7b314610b6d57806318160ddd14610b4e57806323b872dd14610a2a578063313ce56714610a0e57806339509351146109b25780634cd412d51461098b57806370a0823114610948578063715018a6146108c85780637e5cd5c1146108605780638ab1d681146107cb5780638da5cb5b1461079657806395d89b41146106175780639b19251a146105ce5780639fd6db12146105aa578063a0712d68146104a2578063a457c2d7146103d8578063a9059cbb1461037a578063af35c6c71461030b578063dd62ed3e146102b5578063e43252d7146102185763f2fde38b1461011557600080fd5b346102145760206003193601126102145761012e610cc4565b90610137610d0f565b73ffffffffffffffffffffffffffffffffffffffff8092169283156101ab575050600554827fffffffffffffffffffffffff0000000000000000000000000000000000000000821617600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b8280fd5b5050346102b15760206003193601126102b1577fb1288e9f7bae3599e10819d5553febea48e11a6f8f585b32c8abad397dd2627e602073ffffffffffffffffffffffffffffffffffffffff61026b610cc4565b610273610d0f565b16928385526006825280852060017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008254161790555160018152a280f35b5080fd5b5050346102b157806003193601126102b157806020926102d3610cc4565b6102db610cec565b73ffffffffffffffffffffffffffffffffffffffff91821683526001865283832091168252845220549051908152f35b8334610377578060031936011261037757610324610d0f565b6101007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff60075416176007557f75fce015c314a132947a3e42f6ab79ab8e05397dabf35b4d742dea228bbadc2d8180a180f35b80fd5b5050346102b157806003193601126102b1576103c260209260ff8361039d610cc4565b923381526006875220541680156103c9575b6103b890610ef1565b6024359033610f62565b5160018152f35b5060075460081c60ff166103af565b5082346103775782600319360112610377576103f2610cc4565b918360243592338152600160205281812073ffffffffffffffffffffffffffffffffffffffff86168252602052205490828210610439576020856103c28585038733610db0565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152fd5b509034610214576020600319360112610214578135916104c0610d0f565b60ff600754161561056857331561052657506104de82600254610d74565b600255338352826020528083206104f6838254610d74565b905551908152817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60203393a380f35b6020606492519162461bcd60e51b8352820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b6020606492519162461bcd60e51b8352820152601360248201527f4d696e74696e672069732064697361626c6564000000000000000000000000006044820152fd5b5050346102b157816003193601126102b15760209060ff6007541690519015158152f35b5050346102b15760206003193601126102b15760ff8160209373ffffffffffffffffffffffffffffffffffffffff610604610cc4565b1681526006855220541690519015158152f35b509190346102b157816003193601126102b157805190828454600181811c9080831692831561078c575b602093848410811461076057838852879594939291811561072357506001146106c5575b50505003601f01601f191682019267ffffffffffffffff8411838510176106995750829182610695925282610c7c565b0390f35b806041867f4e487b71000000000000000000000000000000000000000000000000000000006024945252fd5b8888529193925086917f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b82841061070d5750505090601f1992601f92820101918193610665565b80548885018701528794509285019281016106f0565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016848701525050151560051b830101905081601f601f19610665565b60248960228c7f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b91607f1691610641565b5050346102b157816003193601126102b15760209073ffffffffffffffffffffffffffffffffffffffff600554169051908152f35b5050346102b15760206003193601126102b1577fb1288e9f7bae3599e10819d5553febea48e11a6f8f585b32c8abad397dd2627e602073ffffffffffffffffffffffffffffffffffffffff61081e610cc4565b610826610d0f565b1692838552600682528085207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00815416905551848152a280f35b8334610377578060031936011261037757610879610d0f565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00600754166007557faf79b4370f6af9d950564bbe6b81f7f0834c003c455db9248f4e55e6bf865eb78180a180f35b83346103775780600319360112610377576108e1610d0f565b8073ffffffffffffffffffffffffffffffffffffffff6005547fffffffffffffffffffffffff00000000000000000000000000000000000000008116600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b5050346102b15760206003193601126102b1578060209273ffffffffffffffffffffffffffffffffffffffff61097c610cc4565b16815280845220549051908152f35b5050346102b157816003193601126102b15760209060ff60075460081c1690519015158152f35b5050346102b157806003193601126102b1576103c2602092610a076109d5610cc4565b913381526001865284812073ffffffffffffffffffffffffffffffffffffffff84168252865284602435912054610d74565b9033610db0565b5050346102b157816003193601126102b1576020905160128152f35b508290346102b15760606003193601126102b157610a46610cc4565b610a4e610cec565b918460443594338152600660205260ff82822054168015610b3f575b610a7390610ef1565b73ffffffffffffffffffffffffffffffffffffffff8416815260016020528181203382526020522054907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610ad3575b6020866103c2878787610f62565b848210610afc5750918391610af1602096956103c295033383610db0565b919394819350610ac5565b606490602087519162461bcd60e51b8352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b5060075460081c60ff16610a6a565b5050346102b157816003193601126102b1576020906002549051908152f35b5050346102b157806003193601126102b1576020906103c2610b8d610cc4565b6024359033610db0565b849150833461021457826003193601126102145782600354600181811c90808316928315610c72575b60209384841081146107605783885287959493929181156107235750600114610c135750505003601f01601f191682019267ffffffffffffffff8411838510176106995750829182610695925282610c7c565b600388529193925086917fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410610c5c5750505090601f1992601f92820101918193610665565b8054888501870152879450928501928101610c3f565b91607f1691610bc0565b60208082528251818301819052939260005b858110610cb057505050601f19601f8460006040809697860101520116010190565b818101830151848201604001528201610c8e565b6004359073ffffffffffffffffffffffffffffffffffffffff82168203610ce757565b600080fd5b6024359073ffffffffffffffffffffffffffffffffffffffff82168203610ce757565b73ffffffffffffffffffffffffffffffffffffffff600554163303610d3057565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b91908201809211610d8157565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff809116918215610e885716918215610e1e5760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b608460405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b608460405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b15610ef857565b608460405162461bcd60e51b815260206004820152603360248201527f53656e646572206973206e6f742077686974656c697374656420616e6420747260448201527f617366657273206172652064697361626c6564000000000000000000000000006064820152fd5b73ffffffffffffffffffffffffffffffffffffffff8091169182156110c0571691821561105657600082815280602052604081205491808310610fec57604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220610fe1828254610d74565b9055604051908152a3565b608460405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152fd5b608460405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b608460405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fdfea2646970667358221220278ac829b08b5673dcefb61339c4d706bf68548ff9d8c02249caeddf28eaa49164736f6c63430008120033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.